Files
kotlin-fork/compiler/testData/diagnostics/tests/constructorConsistency/propertyAccess.fir.kt
T

8 lines
80 B
Kotlin
Vendored

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