mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
12 lines
141 B
Plaintext
12 lines
141 B
Plaintext
class C() {
|
|
class object {
|
|
fun create() = C()
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val c = C.create()
|
|
return if (c is C) "OK" else "fail"
|
|
}
|
|
|