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) } }