Files
kotlin-fork/compiler/testData/diagnostics/tests/secondaryConstructors/kt6992.fir.kt
T

4 lines
61 B
Kotlin
Vendored

class X<T>(val t: T) {
constructor(t: String): this(t)
}