added unit tests that confirmed break before the i694 fix and work afterwards.

This commit is contained in:
Reinier Zwitserloot
2015-01-31 04:46:57 +01:00
parent 6a91c013ca
commit ef1f4e6404
3 changed files with 42 additions and 0 deletions
@@ -0,0 +1,11 @@
class ValWithLocalClasses1 {
{
lombok.val f2 = new ValWithLocalClasses2() {};
}
}
class ValWithLocalClasses2 {
{
lombok.val f3 = 0;
}
}