Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/extensionToPrimitive.kt
2019-11-19 11:00:09 +03:00

6 lines
165 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
fun Int.is42With(that: Int) = this + 2 * that == 42
return if ((Int::is42With)(16, 13)) "OK" else "Fail"
}