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