JVM: remove tests on JVM target 1.6
This commit is contained in:
committed by
Space Team
parent
b713dfd7ea
commit
e4e1bcefbd
@@ -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()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user