Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionProperties
/
extensionPropertyInNestedClass.kt
blob: 5689f86de1b02ae607bfae929d888655ff24607f [
file
]
class
A
{
val a
:
String
=
"O"
class
B
{
val b
:
String
=
"K"
val A
.
foo
:
String
get
()
{
return
this
.
a
+
this
@B
.
b
}
fun test
()
=
A
().
foo
}
}
fun box
():
String
{
return
A
.
B
().
test
()
}