Files
kotlin/compiler/testData/codegen/box/innerNested/innerSimple.kt
2019-11-19 11:00:09 +03:00

9 lines
136 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
class Outer {
inner class Inner {
fun box() = "OK"
}
}
fun box() = Outer().Inner().box()