From 8cd87059c892dc4311ed22d2156ed1ab5e0aa1b8 Mon Sep 17 00:00:00 2001 From: Nikolay Lunyak Date: Fri, 5 Jan 2024 13:34:43 +0000 Subject: [PATCH] [FIR] Fix the failing test after merging `533ed5c6` It started failing because of other changes having been merged right before it ^KT-64644 Fixed Merge-request: KT-MR-13755 Merged-by: Nikolay Lunyak --- .../tests/compilerCrashInTypeParameterBoundsChecker.fir.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/testData/diagnostics/tests/compilerCrashInTypeParameterBoundsChecker.fir.kt b/compiler/testData/diagnostics/tests/compilerCrashInTypeParameterBoundsChecker.fir.kt index 5504142bf37..71c31a9090c 100644 --- a/compiler/testData/diagnostics/tests/compilerCrashInTypeParameterBoundsChecker.fir.kt +++ b/compiler/testData/diagnostics/tests/compilerCrashInTypeParameterBoundsChecker.fir.kt @@ -5,7 +5,7 @@ typealias MaybePair = Pair? fun MaybePair> foo(x: T) { if (x != null) { - println(x.first) - println(x.second) + println(x.first) + println(x.second) } }