Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
branching
/
when9.kt
blob: af8ef8c00dde11c2f48339388aea77f4ebc11d7b [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun box
():
String
{
foo
(
0
)
return
"OK"
}
fun foo
(
x
:
Int
)
{
when
(
x
)
{
0
->
0
}
}