Files
kotlin-fork/compiler/testData/resolveConstructorDelegationCalls/inheritanceWithGeneric.kt
T
2015-03-11 17:45:23 +03:00

8 lines
104 B
Kotlin
Vendored

open class B<T> {
constructor(x: T = null!!) {}
}
class A : B<Int> {
<caret>constructor() {}
}