c7435ba760
We are going to deprecate `WITH_RUNTIME` directive. The main reason behind this change is that `WITH_STDLIB` directive better describes its meaning, specifically it will add kotlin stdlib to test's classpath.
23 lines
312 B
Kotlin
Vendored
23 lines
312 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_STDLIB
|
|
|
|
var result = "fail 2"
|
|
class Foo {
|
|
val b = { a }
|
|
val c = Runnable { result = a }
|
|
|
|
companion object {
|
|
@JvmStatic
|
|
private val a = "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
if (Foo().b() != "OK") return "fail 1"
|
|
|
|
Foo().c.run()
|
|
|
|
return result
|
|
}
|