[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 <Nikolay.Lunyak@jetbrains.com>
This commit is contained in:
Nikolay Lunyak
2024-01-05 13:34:43 +00:00
committed by Space Team
parent d7929f93f2
commit 8cd87059c8
@@ -5,7 +5,7 @@ typealias MaybePair = Pair<Int, Int>?
fun <T: <!FINAL_UPPER_BOUND!>MaybePair<!>> foo(x: T) {
if (x != null) {
println(x<!UNSAFE_CALL!>.<!>first)
println(x<!UNSAFE_CALL!>.<!>second)
println(x.first)
println(x.second)
}
}