Files
2013-05-02 14:53:02 +02:00

9 lines
169 B
Java

class C<T>{
static class D{
class E{
<error descr="'C.this' cannot be referenced from a static context">T</error> x;
}
}
}
class T{}