mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
12 lines
171 B
Kotlin
Vendored
12 lines
171 B
Kotlin
Vendored
package zzz
|
|
|
|
import JavaClass
|
|
import JavaClass.Z
|
|
|
|
class A : JavaClass() {
|
|
fun test() = runZ(JavaClass.Z {a, b -> a + b})
|
|
}
|
|
|
|
fun box(): String {
|
|
return A().test()
|
|
} |