blob: 3520a79ea9bb1b0ecf9884d18071ef52a16628b4 [file] [log] [blame]
// "Replace lambda with method reference" "false"
class NonStaticInner3 {
class Foo {
Foo(Integer i) {}
Foo() {}
}
interface I1<X> {
X m(int i);
}
interface I2<X> {
X m();
}
interface I3<X> {
X m(NonStaticInner3 rec, int i);
}
interface I4<X> {
X m(NonStaticInner3 rec);
}
{
I1<Foo> b1 = (i) -> new Foo(i);
I2<Foo> b2 = () -> new Foo();
}
{
I3<Foo> b1 = (rec, i) -> <caret>rec.new Foo(i);
I4<Foo> b2 = (rec) -> rec.new Foo();
}
}