Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionProperties
/
extensionPropertyInSAMInterface.kt
blob: cc989ad89bcaea65959afd5eb280e705c36db4d3 [
file
]
fun
interface
SamInterface
{
fun
Int
.
accept
():
String
}
val
Int
.
a
:
String
get
()
=
"OK"
val b
=
SamInterface
{
a
}
fun box
():
String
{
with
(
b
)
{
return
1.accept
()
}
}