Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
objects
/
kt2675.kt
blob: 6dd4e70caf121c4d41104240273721bd2086a82c [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
class
A
()
{
fun ok
()
=
Foo
.
Bar
.
bar
()
+
Foo
.
Bar
.
barv
private
object
Foo
{
fun foo
()
=
"O"
val foov
=
"K"
public
object
Bar
{
fun bar
()
=
foo
()
val barv
=
foov
}
}
}
fun box
()
=
A
().
ok
()