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