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

9 lines
97 B
Kotlin
Vendored

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