Files
kotlin-fork/idea/testData/codegen/patternMatching/callProperty.jet
T
2011-07-06 20:17:38 +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"
}
}