blob: 8b55c0faf470d16e44394c73cf79ca203fa6074c [file] [log] [blame]
// "Replace lambda with method reference" "true"
class NonStaticInner3 {
class Foo {
}
interface I1<X> {
X m();
}
{
I1<Foo> b2 = Foo::new;
}
}