blob: 3fae72f951a0a4432e7f0cd878a39ddac92cdb5c [file]
// TARGET_BACKEND: JVM
// IGNORE_BACKEND_K1: JVM_IR, JS_IR, JS_IR_ES6
// WITH_STDLIB
// FILE: test.kt
fun box(): String =
Nested().x
// FILE: script.kts
class Nested {
val x = "OK"
}