Files
kotlin-fork/compiler/testData/ir/irText/declarations/interfaceProperties.kt
T
2016-10-18 09:09:53 +03:00

8 lines
143 B
Kotlin
Vendored

// WITH_RUNTIME
interface C {
val test1: Int
val test2: Int get() = 0
var test3: Int
var test4: Int get() = 0; set(value) {}
}