Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionProperties
/
extensionPropertyWithAnonymoesExtensionWithALabel.kt
blob: f3beb5d23073550fe409888560384415ed45d2b6 [
file
]
class
A
(
val x
:
String
)
val
<
T
>
T
.
a
:
T
.()
->
String
get
()
=
fun1@ fun T
.():
String
{
return
(
this
@fun1
as
A
).
x
+
(
this
@a
as
A
).
x
}
fun box
():
String
{
return
A
(
"K"
).
a
(
A
(
"O"
))
}