non-static members access from implicitly static context fixed (IDEA-108285)

This commit is contained in:
Anna Kozlova
2013-06-03 22:25:26 +04:00
parent cebe1a8943
commit 8741f3f1d6
5 changed files with 11 additions and 5 deletions
@@ -0,0 +1,5 @@
class Test<T> {
interface NestedInterface<U extends <error descr="'Test.this' cannot be referenced from a static context">T</error>> {
<V extends <error descr="'Test.this' cannot be referenced from a static context">T</error>> void foo();
}
}