Remove OI/NI attributes from test data

This commit is contained in:
Denis.Zharkov
2021-05-24 12:42:39 +03:00
committed by teamcityserver
parent 2ecba6ac39
commit ddbdfafa79
441 changed files with 1005 additions and 1037 deletions
@@ -7,7 +7,7 @@ open class B : In<B>
fun <T> select(x: T, y: T) = x
fun <!IMPLICIT_INTERSECTION_TYPE{OI}!>foo2<!>() = select(A(), B()) // Type "In<A & B>" is prohibited in return position
fun foo2() = select(A(), B()) // Type "In<A & B>" is prohibited in return position
@@ -20,4 +20,4 @@ open class H : In<H>
fun <S> select8(a: S, b: S, c: S, d: S, e: S, f: S, g: S, h: S) = a
fun <!IMPLICIT_INTERSECTION_TYPE{OI}!>foo8<!>() = select8(A(), B(), C(), D(), E(), F(), G(), H())
fun foo8() = select8(A(), B(), C(), D(), E(), F(), G(), H())