Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
box
/
regressions
/
kt5395.kt
blob: 11bb02ddf092bd0aa0a0d9cefd2a3f9d611cc82e [
file
]
class
D
{
companion
object
{
protected
val F
:
String
=
"OK"
}
inner
class
E
{
fun foo
()
=
F
}
}
fun box
():
String
{
return
D
().
E
().
foo
()
}