[FE] Fix tests

This commit is contained in:
Victor Petukhov
2022-04-22 14:02:43 +03:00
committed by teamcity
parent 12a39d0330
commit 0f1d212fc5
20 changed files with 201 additions and 108 deletions
-12
View File
@@ -1,12 +0,0 @@
// TARGET_BACKEND: JVM_IR
// WITH_STDLIB
fun box(): String {
return try {
val range1 = 0..1
range1 as List<Double>
range1.joinToString { "" }
} catch (e: java.lang.ClassCastException) {
"OK"
}
}