Files
kotlin-fork/compiler/testData/codegen/box/intrinsics/incWithLabel.kt
T
2016-11-09 21:41:12 +03:00

11 lines
212 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
fun box(): String {
var x = 1
(foo@ x)++
++(foo@ x)
if (x != 3) return "Fail: $x"
return "OK"
}