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