mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
14 lines
467 B
Java
14 lines
467 B
Java
import java.util.*;
|
|
class Test<T> {
|
|
public static void foo(<error descr="'Test.this' cannot be referenced from a static context">T</error> t) {}
|
|
public void bar(T t) {}
|
|
|
|
static class A extends ArrayList<<error descr="'Test.this' cannot be referenced from a static context">T</error>> {
|
|
static void boo(<error descr="'Test.this' cannot be referenced from a static context">T</error> t){}
|
|
}
|
|
|
|
class B extends ArrayList<T> {
|
|
void foo(T r){}
|
|
}
|
|
}
|