9dd8eda1c9
Library methods such as 'listOf' are resolved to have the package fragments as their parents, but JVM expects their containing file classes as parents. This fix generates those file classes and uses them as parent replacements for such library methods.
29 lines
519 B
Kotlin
Vendored
29 lines
519 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS
|
|
|
|
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
for (x in 1..10) {
|
|
assert(x in 1..10)
|
|
assert(x + 10 !in 1..10)
|
|
}
|
|
|
|
var x = 0
|
|
assert(0 !in 1..2)
|
|
|
|
assert(++x in 1..1)
|
|
assert(++x !in 1..1)
|
|
|
|
assert(sideEffect(x) in 2..3)
|
|
return "OK"
|
|
}
|
|
|
|
|
|
var invocationCounter = 0
|
|
fun sideEffect(x: Int): Int {
|
|
++invocationCounter
|
|
assert(invocationCounter == 1)
|
|
return x
|
|
} |