Remove WITH_NEW_INFERENCE directive from all tests

This directive anyway does not make test run twice with OI, and with NI
It only once run the test with specific settings (// LANGUAGE)
and ignores irrelevant (OI or NI tags)
This commit is contained in:
Denis.Zharkov
2021-05-24 12:18:44 +03:00
committed by teamcityserver
parent d4586cefb4
commit 2ecba6ac39
1333 changed files with 2 additions and 1337 deletions
@@ -1,10 +1,9 @@
// "Add parameter to function 'called'" "true"
// WITH_RUNTIME
// DISABLE-ERRORS
// !WITH_NEW_INFERENCE
fun caller() {
called(<caret>setOf(1, 2, 3))
}
fun called() {}
fun called() {}
@@ -1,10 +1,9 @@
// "Add parameter to function 'called'" "true"
// WITH_RUNTIME
// DISABLE-ERRORS
// !WITH_NEW_INFERENCE
fun caller() {
called(<caret>setOf(1, 2, 3))
}
fun called(of: Set<Int>) {}
fun called(of: Set<Int>) {}