mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
10 lines
140 B
Kotlin
Vendored
10 lines
140 B
Kotlin
Vendored
import B
|
|
|
|
object A {
|
|
val c = 1
|
|
fun foo() = 4
|
|
}
|
|
|
|
fun box(): String {
|
|
return if (B.a == 1 && B.b == 4) "OK" else "${B.a} ${B.b}"
|
|
} |