Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
classFieldInsideNested.kt
blob: 0ac00ddb6308499ca2e63a51fafbebd5c8b8e812 [
file
] [
log
] [
blame
]
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