blob: 7b07324c142d257dac7720772d4d32c1f5807c5a [file] [log] [blame]
class Test<X> {
interface I {
void _();
}
void test() {
I i1 = <error descr="Parameterized qualifier on static method reference">Test<String>::foo</error>;
I i2 = Test::foo;
}
static void foo() { };
}