mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
24 lines
324 B
Kotlin
Vendored
24 lines
324 B
Kotlin
Vendored
// FILE: JavaClass.java
|
|
|
|
class JavaClass {
|
|
private Runnable r;
|
|
|
|
public JavaClass(Runnable r) {
|
|
this.r = r;
|
|
}
|
|
|
|
public void run() {
|
|
r.run();
|
|
}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
fun box(): String {
|
|
var v = "FAIL"
|
|
val f = {-> v = "OK"}
|
|
val x = object : JavaClass(f) {}
|
|
x.run()
|
|
return v
|
|
}
|