From 7b53d668ab25d65579ced9bad0250a42c6b7336b Mon Sep 17 00:00:00 2001 From: Victor Petukhov Date: Fri, 23 Oct 2020 18:32:41 +0300 Subject: [PATCH] Fix test after 4f061624464a0fa2f643ec88dbab3a061dd1b9e6 --- .../diagnostics/testsWithStdLib/inference/kt42620.fir.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/testData/diagnostics/testsWithStdLib/inference/kt42620.fir.kt b/compiler/testData/diagnostics/testsWithStdLib/inference/kt42620.fir.kt index 6a710c8b790..46cc6249346 100644 --- a/compiler/testData/diagnostics/testsWithStdLib/inference/kt42620.fir.kt +++ b/compiler/testData/diagnostics/testsWithStdLib/inference/kt42620.fir.kt @@ -6,10 +6,10 @@ fun main1() = when { else -> Foo::plus } -fun main2() = if (true) Foo::minus else Foo::times +fun main2() = if (true) Foo::minus else Foo::times -fun main3() = if (true) { Foo::minus } else { Foo::times } +fun main3() = if (true) { Foo::minus } else { Foo::times } -fun main4() = try { Foo::minus } finally { Foo::times } +fun main4() = try { Foo::minus } finally { Foo::times } -fun main5() = Foo::minus ?: Foo::times +fun main5() = Foo::minus ?: Foo::times