Files
kotlin/compiler/testData/codegen/boxAgainstJava/sam/propertyReference.kt
2019-10-29 18:38:59 +03:00

15 lines
205 B
Kotlin
Vendored

// 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")
}