Unmute passing tests

This commit is contained in:
Dmitry Petrov
2020-04-16 00:03:56 +03:00
parent 74791495d7
commit e2ee3d1d18
6 changed files with 0 additions and 12 deletions
@@ -1,5 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
inline class X(val x: Any)
fun useX(x: X): String = x.x as String
@@ -1,5 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
inline class X(val x: Any)
fun useX(x: X): String = x.x as String
@@ -1,5 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
inline class X(val x: Any?)
fun useX(x: X): String = x.x as String
@@ -1,5 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
inline class X(val x: Any?)
fun useX(x: X): String = if (x.x == null) "OK" else "fail: $x"
@@ -1,6 +1,4 @@
// WITH_RUNTIME
// IGNORE_BACKEND_FIR: JVM_IR
fun f1(): () -> Result<String> {
return {
runCatching {
@@ -1,6 +1,4 @@
// WITH_RUNTIME
// IGNORE_BACKEND_FIR: JVM_IR
fun f1() = lazy {
runCatching {
"OK"