FIR: handle 'SinceKotlin' as a special kind of deprecated

#KT-51850 Fixed
This commit is contained in:
Mikhail Glukhikh
2022-04-05 12:42:11 +03:00
committed by teamcity
parent 07b5bd72ae
commit 9bd6a9c069
19 changed files with 122 additions and 82 deletions
@@ -18,14 +18,14 @@ interface I11 {
}
fun f1(x: I10) = x.foo()
fun f2(x: I11) = x.foo()
fun f2(x: I11) = x.<!UNRESOLVED_REFERENCE!>foo<!>()
fun f3(x: J) = x.foo()
interface BothI1 : I10, I11
fun f4(x: BothI1) = x.foo()
interface BothI2 : I11, I10
fun f5(x: BothI2) = x.foo()
fun f5(x: BothI2) = x.<!UNRESOLVED_REFERENCE!>foo<!>()
interface JAndI10 : J, I10
fun f6(x: JAndI10) = x.foo()