Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/extensionToPrimitive.kt
2018-08-09 14:22:50 +03:00

5 lines
135 B
Kotlin
Vendored

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