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