do not warn about reference to super member before call to super (IDEA-57259)

This commit is contained in:
anna
2013-05-08 16:03:27 +02:00
parent f6526218f4
commit 160833314a
3 changed files with 10 additions and 1 deletions
@@ -0,0 +1,8 @@
class A<T extends A.B> {
class B extends A<B> {}
}
class C<T> {
class D extends C<T> {}
<T extends C<String>.D> void foo(){}
}