Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
innerNested
/
nestedClassObject.kt
blob: 6d57104afeeb8ff3be19944287afcb34d51c3058 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
class
Outer
{
class
Nested
{
companion
object
{
val O
=
"O"
val K
=
"K"
}
}
fun O
()
=
Nested
.
O
}
fun box
()
=
Outer
().
O
()
+
Outer
.
Nested
.
K