diff --git a/compiler/testData/diagnostics/tests/callableReference/generic/argumentAndReturnExpectedType.fir.kt b/compiler/testData/diagnostics/tests/callableReference/generic/argumentAndReturnExpectedType.fir.kt index c43049f5469..fc710a64a4f 100644 --- a/compiler/testData/diagnostics/tests/callableReference/generic/argumentAndReturnExpectedType.fir.kt +++ b/compiler/testData/diagnostics/tests/callableReference/generic/argumentAndReturnExpectedType.fir.kt @@ -27,9 +27,9 @@ fun listOf(): List = TODO() fun setOf(): Set = TODO() fun test2(x: T) { - bar(x, x, ::foo).checkType { _>() } + bar(x, x, ::foo).checkType { _>() } bar(x, 1, ::foo).checkType { _>() } - bar(1, x, ::foo).checkType { _>() } + bar(1, x, ::foo).checkType { _>() } bar(listOf(), setOf(), ::foo).checkType { _, Set>> () } bar(listOf(), 1, ::foo).checkType { _, Int>>() }