Files
kotlin-fork/compiler/testData/codegen/box/binaryOp/kt44402.kt
T
2021-03-05 12:22:54 -08:00

7 lines
124 B
Kotlin
Vendored

fun <A: Double, B: A> f(a: Double, b: B) = a == b
fun box(): String {
if (f(0.1, 0.2)) return "FAIL"
return "OK"
}