test for inner class of generic class inheriting another generic class

actually fixed in Idea in 4afdd61d8dcb846994166ed8f30a7515e9661d56. Thanks, Max!
This commit is contained in:
Stepan Koltsov
2012-04-19 14:08:50 +04:00
parent 7eb653ea22
commit bfdba9cebc
3 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package test;
interface Trait<P> {
}
class Outer<P, Q> {
class Inner {
}
class Inner2 extends Inner implements Trait<P> {
}
}