Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
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"
}