Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/classMember.kt
2018-06-28 12:26:41 +02:00

10 lines
147 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
fun box(): String {
class Local {
fun foo() = "OK"
}
val ref = Local::foo
return ref(Local())
}