Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
function
/
named.kt
blob: 0a5eb73fee5530869066e4512e57b016f25c4dbf [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun foo
(
a
:
Int
,
b
:
Int
)
=
a
-
b
fun box
():
String
{
assertEquals
(
18
,
foo
(
b
=
24
,
a
=
42
))
return
"OK"
}