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