Files
kotlin/compiler/testData/codegen/patternMatching/callProperty.jet
2011-10-20 16:21:18 +02:00

10 lines
126 B
Plaintext

class C(val p: Boolean) { }
fun box(): String {
val c = C(true)
return when(c) {
.p => "OK"
else => "fail"
}
}