diff --git a/compiler/testData/ir/irText/expressions/floatingPointComparisons/nullableAnyAsIntToDouble.fir.kt.txt b/compiler/testData/ir/irText/expressions/floatingPointComparisons/nullableAnyAsIntToDouble.fir.kt.txt deleted file mode 100644 index 88e971888fe..00000000000 --- a/compiler/testData/ir/irText/expressions/floatingPointComparisons/nullableAnyAsIntToDouble.fir.kt.txt +++ /dev/null @@ -1,6 +0,0 @@ -fun test(x: Any?, y: Double): Boolean { - return when { - x is Int -> less(arg0 = x /*as Int */.toDouble(), arg1 = y) - else -> false - } -} diff --git a/compiler/testData/ir/irText/expressions/kt36963.fir.kt.txt b/compiler/testData/ir/irText/expressions/kt36963.fir.kt.txt deleted file mode 100644 index 1121fbdab3a..00000000000 --- a/compiler/testData/ir/irText/expressions/kt36963.fir.kt.txt +++ /dev/null @@ -1,6 +0,0 @@ -fun foo() { -} - -fun test(): KFunction0 { - return CHECK_NOT_NULL>(arg0 = ::foo) -}