Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
binaryOp
/
kt44402.kt
blob: 9ce890f3a37156c3c4d7bd8604e43393d89f1862 [
file
]
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"
}