Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1fbe2c8085532ef2fa66bf26fdf2b04c5cca97
/
.
/
compiler
/
testData
/
codegen
/
box
/
branching
/
when6.kt
blob: f9790ff46beb789c3498f6cb8c65d51bcbe0db6b [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun foo
()
{
}
fun box
():
String
{
if
(
true
)
foo
()
else
foo
()
return
"OK"
}