Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
classPrivateArtificialFieldInsideNested.kt
blob: af1660a58da3e52c276b7df2bed81695647ef529 [
file
]
abstract
class
Your
{
abstract
val your
:
String
fun foo
()
=
your
}
class
My
{
private
val back
=
"O"
val
my
:
String
get
()
=
object
:
Your
()
{
override
val your
=
back
}.
foo
()
+
"K"
}
fun box
()
=
My
().
my