JVM: remove tests on JVM target 1.6

This commit is contained in:
Alexander Udalov
2023-05-12 10:12:26 +02:00
committed by Space Team
parent b713dfd7ea
commit e4e1bcefbd
39 changed files with 29 additions and 859 deletions
@@ -1,5 +1,4 @@
// FIR_IDENTICAL
// !JVM_TARGET: 1.6
// FILE: Test.java
public interface Test {
default String test() {
@@ -27,7 +26,7 @@ interface KTrait2 : KTrait {
class A : KTrait {
fun a() {
super.<!DEFAULT_METHOD_CALL_FROM_JAVA6_TARGET_ERROR!>test<!>()
super.test()
test()
}
@@ -36,7 +35,7 @@ class A : KTrait {
class A2 : KTrait2 {
fun a() {
super.<!DEFAULT_METHOD_CALL_FROM_JAVA6_TARGET_ERROR!>test<!>()
super.test()
test()
}