Files
kotlin-fork/compiler/testData/codegen/regressions/kt2482.kt
T
2012-08-03 07:53:12 +03:00

9 lines
273 B
Kotlin

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"
}