Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt2482.kt
blob: 6a614198741dfb4c32d7f6d66ac256d4e262f21b [
file
]
public
fun box
()
:
String
{
if
(
0
==
0
)
{
// Does not crash if either this...
if
(
0
==
0
)
{
// ...or this is changed to if ( true )
// Does not crash if the following is uncommented.
//println("foo")
}
}
return
"OK"
}