15 lines
240 B
Kotlin
Vendored
15 lines
240 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// JVM_TARGET: 1.8
|
|
// SAM_CONVERSIONS: INDY
|
|
// FILE: boundMemberRef.kt
|
|
class C(val t: String) {
|
|
fun test() = t
|
|
}
|
|
|
|
fun box() = Sam(C("OK")::test).get()
|
|
|
|
// FILE: Sam.java
|
|
public interface Sam {
|
|
String get();
|
|
}
|