Files
kotlin-fork/compiler/testData/codegen/box/classLiteral/bound/javaIntrinsicWithSideEffect.kt
T
2020-04-02 12:42:50 +03:00

13 lines
250 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// WITH_RUNTIME
fun box(): String {
var x = 42
val k = (x++)::class.java
if (k != Int::class.java) return "Fail 1: $k"
if (x != 43) return "Fail 2: $x (side effect should have taken place)"
return "OK"
}