11 lines
213 B
Kotlin
Vendored
11 lines
213 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !LANGUAGE: +NewInference
|
|
|
|
abstract class TestType<V: Any> {
|
|
open inner class Inner(val item: V)
|
|
}
|
|
|
|
class Derived: TestType<Long>() {
|
|
inner class DerivedInner(item: Long): Inner(item)
|
|
}
|