Files
kotlin-fork/compiler/testData/codegen/box/callableReference/local/extensionToPrimitive.kt
T
2013-12-24 20:41:20 +04:00

5 lines
134 B
Kotlin

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