mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
10 lines
126 B
Plaintext
10 lines
126 B
Plaintext
class C(val p: Boolean) { }
|
|
|
|
fun box(): String {
|
|
val c = C(true)
|
|
return when(c) {
|
|
.p => "OK"
|
|
else => "fail"
|
|
}
|
|
}
|