Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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
()
}