Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
boxing
/
boxing10.kt
blob: f7003fc2b26bf384bbf4b850278474137386a8cb [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun box
():
String
{
val FALSE
:
Boolean
?
=
false
if
(
FALSE
!=
null
)
{
do
{
return
"OK"
}
while
(
FALSE
)
}
return
"FAIL"
}