Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
codegen
/
box
/
script
/
scriptNestedClassInstance.kt
blob: 77e4c6017b42013ed384938db637a97eeded6d0d [
file
]
// TARGET_BACKEND: JVM
// IGNORE_BACKEND_FIR: JVM_IR
// FIR status: scripts aren't supported yet
// IGNORE_LIGHT_ANALYSIS
// WITH_STDLIB
// FILE: test.kt
fun box
():
String
=
Script
.
Nested
().
x
// FILE: script.kts
class
Nested
{
val x
=
"OK"
}