blob: 03c72c79d2b7c51dec5ff12fe072e0347d30bd09 [file] [log] [blame]
class Test {
interface I {
<T> String m();
}
static String foo() { return null; }
public I get() {
return Test::foo;
}
}