blob: 65be8346cc67066b958616a35260f402d0ffff48 [file]
// TARGET_BACKEND: JVM
// WITH_STDLIB
// FILE: test.kt
fun box(): String =
Nested().x
// FILE: script.kts
class Nested {
val x = "OK"
}