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