Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
sam
/
propertyReference.kt
blob: 46457055f899c2b53fc95d72931f2c3c9a98cf57 [
file
]
// TARGET_BACKEND: JVM
// MODULE: lib
// FILE: Base.java
interface
Interface
{
String
call
(
String
t
);
}
// MODULE: main(lib)
// FILE: 1.kt
val
String
.
property
:
String
get
()
=
this
fun box
():
String
{
return
Interface
(
String
::
property
).
call
(
"OK"
)
}