Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b7f6d40b562cc05b0c88d1051ff42fe8a146ea5
/
.
/
compiler
/
testData
/
codegen
/
box
/
propertyAccess
/
privateClassesWithPrivateMembers.kt
blob: de93a59b056c2d0ae37625e05aae2885931b2c50 [
file
]
private
class
A
{
private
val f
=
"OK"
inline
fun ii
()
=
f
}
private
class
B
{
private
val a
=
A
()
fun foo
()
=
a
.
ii
()
}
fun box
()
=
B
().
foo
()