Rename tests with diagnostics on JVM backend

Remove the "_ir" suffix. It was originally used to distinguish tests on
the JVM IR backend from the old JVM backend ("_old"), but the latter are
removed now.
This commit is contained in:
Alexander Udalov
2023-06-22 19:11:37 +02:00
committed by Space Team
parent 18be8f50c0
commit 6f2bb8c05a
79 changed files with 214 additions and 214 deletions
@@ -0,0 +1,13 @@
// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_PARAMETER
// TARGET_BACKEND: JVM_IR
open class B<T> {
open fun foo(t: T) {}
}
class C : B<String>() {
override fun foo(t: String) {}
<!ACCIDENTAL_OVERRIDE!>fun foo(o: Any)<!> {}
}