FIR: Adjust diagnostics test data after resolution of context receivers

This commit is contained in:
Denis.Zharkov
2022-03-09 14:32:56 +03:00
committed by teamcity
parent ef84dddc88
commit b2d5bf3eae
40 changed files with 106 additions and 311 deletions
@@ -6,10 +6,10 @@ context(Collection<P>) class B<P>
fun Int.foo() {
A<Int>()
<!NO_CONTEXT_RECEIVER!>A<String>()<!>
<!NO_CONTEXT_RECEIVER!>A<!><String>()
}
fun Collection<Int>.bar() {
B<Int>()
<!NO_CONTEXT_RECEIVER!>B<String>()<!>
}
<!NO_CONTEXT_RECEIVER!>B<!><String>()
}