Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
classArtificialFieldInsideNested.kt
blob: a33fcca3c742243ff67153bc5ef205025afa0443 [
file
] [
log
] [
blame
]
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