Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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