mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
8 lines
96 B
Kotlin
8 lines
96 B
Kotlin
fun Any.foo() = 1
|
|
|
|
class A {
|
|
class object
|
|
}
|
|
|
|
fun box() = if (A.foo() == 1) "OK" else "fail"
|