Files
kotlin-fork/compiler/testData/ir/irText/classes/primaryConstructor.kt
T
2016-10-18 09:08:34 +03:00

13 lines
175 B
Kotlin
Vendored

class Test1(val x: Int, val y: Int)
class Test2(x: Int, val y: Int) {
val x = x
}
class Test3(x: Int, val y: Int) {
val x: Int
init {
this.x = x
}
}