Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionFunctions
/
extensionFunctionInNestedClass.kt
blob: 7aa87fd7dec42d0f5626e11b87e8c63e2d334666 [
file
]
class
A
{
val a
:
String
=
"O"
class
B
{
val b
:
String
=
"K"
fun A
.
foo
():
String
{
return
this
.
a
+
this
@B
.
b
}
fun test
()
=
A
().
foo
()
}
}
fun box
():
String
{
return
A
.
B
().
test
()
}