Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
classPrivateArtificialFieldInsideNested.kt
blob: 435447a2931d093ad975c5fb75da41a307ec3f19 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
abstract
class
Your
{
abstract
val your
:
String
fun foo
()
=
your
}
class
My
{
private
val back
=
"O"
val
my
:
String
get
()
=
object
:
Your
()
{
override
val your
=
back
}.
foo
()
+
"K"
}
fun box
()
=
My
().
my