From 842ed624a7bff345b2e71510ec28122ba9a38dec Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Wed, 20 Jan 2021 17:36:20 +0300 Subject: [PATCH] [TD] Remove some outdated dumps in FIR_IDENTICAL tests --- .../nullableAnyAsIntToDouble.fir.kt.txt | 6 ------ compiler/testData/ir/irText/expressions/kt36963.fir.kt.txt | 6 ------ 2 files changed, 12 deletions(-) delete mode 100644 compiler/testData/ir/irText/expressions/floatingPointComparisons/nullableAnyAsIntToDouble.fir.kt.txt delete mode 100644 compiler/testData/ir/irText/expressions/kt36963.fir.kt.txt 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) -}