mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
12 lines
168 B
Kotlin
12 lines
168 B
Kotlin
package test
|
|
|
|
trait Trait<erased P>
|
|
|
|
open class Outer<erased P, erased Q>() {
|
|
open class Inner() {
|
|
}
|
|
|
|
open class Inner2() : Inner(), Trait<P> {
|
|
}
|
|
}
|