a test that lambdas in constructor calls are found

This commit is contained in:
peter
2016-07-21 12:16:42 +02:00
parent 0a4f995460
commit 1c451db9ad
2 changed files with 44 additions and 13 deletions
@@ -0,0 +1,9 @@
class Foo {
Foo() { this(() -> 4); }
Foo(I i) {}
}
interface <caret>I {
int foo();
}