blob: b507698e64d90c020f76f403cac0b88fdc32b637 [file] [log] [blame]
class MyTest {
static class Foo {
}
interface I {
Foo m();
}
static Foo bar() { return null; }
public static void main(String[] args) {
I i = MyTest::bar;
}
}