Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
boxAgainstJava
/
sam
/
propertyReference.kt
blob: e61f8a3add852620416e5fe9440d3e2733798950 [
file
]
// FILE: Base.java
interface
Interface
{
String
call
(
String
t
);
}
// FILE: 1.kt
val
String
.
property
:
String
get
()
=
this
fun box
():
String
{
return
Interface
(
String
::
property
).
call
(
"OK"
)
}