Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
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"
)
}