Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
box
/
innerNested
/
nestedInnerClass.kt
blob: d0b9013523ddc9bd1a6ca392ea415bb9b7ee5236 [
file
] [
log
] [
blame
]
class
A
(
val x
:
String
)
{
fun value
():
String
{
return
object
{
inner
class
Y
{
val y
=
x
}
fun value
()
=
Y
().
y
}.
value
()
}
}
fun box
():
String
=
A
(
"OK"
).
value
()