mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
25 lines
350 B
Kotlin
Vendored
25 lines
350 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// 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
|
|
}
|