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

6 lines
77 B
Kotlin
Vendored

class A {
val x: Int
constructor(x: Int) {
this.x = x
}
}