blob: 033185957bd531e18f6e57213ea47e164c893583 [file] [log] [blame]
class Test4 {
void test() {
Foo2<Test4> f = Test4::yyy;
}
static void yyy(Test4 anObject) {}
}
interface Foo2<T> {
void bar(T j);
}