Remove a test that doesn't make sense anymore

This commit is contained in:
Sergej Jaskiewicz
2022-10-26 13:23:29 +02:00
committed by Space Team
parent 6a40a7e471
commit b429e2f34f
9 changed files with 0 additions and 77 deletions
@@ -1,31 +0,0 @@
// IGNORE_BACKEND_FIR: JVM_IR
// FIR status: not supported in JVM
// IGNORE_BACKEND: JVM, JVM_IR
// IGNORE_BACKEND: NATIVE
// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: WASM
// WASM_MUTE_REASON: LAZY_INIT_PROPERTIES
// IGNORE_LIGHT_ANALYSIS
// MODULE: lib1
// FILE: lib1.kt
// KT-34273
var foo = "Fail"
// MODULE: lib2(lib1)
// FILE: lib2.kt
private val bar = run {
foo = "OK"
42
}
// MODULE: main(lib1, lib2)
// FILE: main.kt
// TODO: the proper behaviour of this test is still open design issue
// K/N & K/JS used to go like this when JVM fails
fun box(): String = foo