mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
test for inner class of generic class inheriting another generic class
actually fixed in Idea in 4afdd61d8dcb846994166ed8f30a7515e9661d56. Thanks, Max!
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package test;
|
||||
|
||||
interface Trait<P> {
|
||||
}
|
||||
|
||||
class Outer<P, Q> {
|
||||
class Inner {
|
||||
}
|
||||
|
||||
class Inner2 extends Inner implements Trait<P> {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user