blob: 510d18485b01bb22adc9dcc8ff395c455c337e20 [file] [log] [blame]
class Test {
interface I {
boolean foo(String s);
}
{
((I)s -> s.endsWith(".java")).getClass();
I i = (I)s -> s.endsWith(".java");
}
}