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

10 lines
136 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
class A
fun A.foo(result: String) = result
fun box(): String {
val x = A::foo
return x(A(), "OK")
}