Files
kotlin-fork/backend.native/tests/external/codegen/box/callableReference/function/classMemberFromTopLevelStringNoArgs.kt
T
2017-03-13 15:31:46 +03:00

9 lines
93 B
Kotlin

class A {
fun foo() = "OK"
}
fun box(): String {
val x = A::foo
return x(A())
}