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
@@ -28,6 +28,6 @@ fun chained2(arg: First) = run {
}
fun test(arg: First) {
chained1(arg).<!UNRESOLVED_REFERENCE{NI}!>first<!>()
chained2(arg).<!UNRESOLVED_REFERENCE{NI}!>first<!>()
chained1(arg).<!UNRESOLVED_REFERENCE!>first<!>()
chained2(arg).<!UNRESOLVED_REFERENCE!>first<!>()
}
@@ -16,11 +16,11 @@ fun <S> intersect(vararg elements: S): S = TODO()
fun intersectAfterSmartCast(arg: Base, arg2: Base) = intersect(
run {
if (arg !is One) throw Exception()
<!DEBUG_INFO_SMARTCAST{NI}!>arg<!>
<!DEBUG_INFO_SMARTCAST!>arg<!>
},
run {
if (arg2 !is Two) throw Exception()
<!DEBUG_INFO_SMARTCAST{NI}!>arg2<!>
<!DEBUG_INFO_SMARTCAST!>arg2<!>
}
)
@@ -32,6 +32,6 @@ fun intersectArgWithSmartCastFromLambda(arg: One, arg2: Base) = argOrFn(arg) {
}
fun test() {
intersectAfterSmartCast(O1, O2).<!UNRESOLVED_REFERENCE{NI}!>base<!>()
intersectArgWithSmartCastFromLambda(O1, O2).<!UNRESOLVED_REFERENCE{NI}!>base<!>()
intersectAfterSmartCast(O1, O2).<!UNRESOLVED_REFERENCE!>base<!>()
intersectArgWithSmartCastFromLambda(O1, O2).<!UNRESOLVED_REFERENCE!>base<!>()
}
@@ -17,5 +17,5 @@ fun smartCastAfterIntersection(a: One, b: Two) = run {
}
fun test(one: One, two: Two) {
smartCastAfterIntersection(one, two)<!UNNECESSARY_SAFE_CALL{NI}!>?.<!><!UNRESOLVED_REFERENCE{NI}!>base<!>()
smartCastAfterIntersection(one, two)<!UNNECESSARY_SAFE_CALL!>?.<!><!UNRESOLVED_REFERENCE!>base<!>()
}
@@ -20,5 +20,5 @@ fun <S> intersectNoBound(vararg elements: S): S = TODO()
fun some(a: One, b: Two, c: Three) = intersectNoBound(intersect(a, b), c)
fun test(arg: Base, arg2: Base) {
some(O1, O2, O3).<!UNRESOLVED_REFERENCE{NI}!>base<!>()
some(O1, O2, O3).<!UNRESOLVED_REFERENCE!>base<!>()
}