JavaFunctionalExpressionIndex: support array initializers

This commit is contained in:
Tagir Valeev
2019-03-15 10:45:43 +07:00
parent 02dbd03cb2
commit 62bbfeaa3c
4 changed files with 56 additions and 6 deletions
@@ -0,0 +1,8 @@
class C {
{
Foo[] array = {() -> {}, () -> {}, null};
Foo[][] array2 = {{() -> {}}};
Bar[] array3 = {() -> {}};
Bar[] array4 = new Bar[] {() -> {}};
}
}