14 lines
204 B
Kotlin
Vendored
14 lines
204 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
class Outer {
|
|
class Nested {
|
|
fun fn() = s
|
|
}
|
|
|
|
companion object {
|
|
private val s = "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Outer.Nested().fn()
|
|
} |