Files
kotlin-fork/compiler/testData/diagnostics/tests/constructorConsistency/propertyAccess.kt
T
2016-06-03 09:45:37 +03:00

8 lines
80 B
Kotlin
Vendored

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