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