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