Update test data. Use simple ''@JvmDefault' instead full qualifier

This commit is contained in:
Mikhael Bogdanov
2018-03-09 11:46:00 +01:00
parent 2a8041e77e
commit 38f8924ae3
61 changed files with 121 additions and 121 deletions
@@ -10,7 +10,7 @@ interface Test {
// JVM_TARGET: 1.8
// WITH_RUNTIME
interface Test2 : Test {
@kotlin.annotations.JvmDefault
@JvmDefault
override fun test(): String {
return super.test()
}
@@ -22,7 +22,7 @@ interface Test3 : Test {
interface Test4 : Test2, Test3 {
@kotlin.annotations.JvmDefault
@JvmDefault
override fun test(): String {
return super.test()
}
@@ -16,7 +16,7 @@ open class TestClass : Test {
}
interface Test2 : Test {
@kotlin.annotations.JvmDefault
@JvmDefault
override fun test(): String
}
@@ -14,7 +14,7 @@ abstract class TestClass : Test {
}
interface Test2 : Test {
@kotlin.annotations.JvmDefault
@JvmDefault
override fun test(): String {
return "OK"
}
@@ -10,7 +10,7 @@ interface Test {
// JVM_TARGET: 1.8
// WITH_RUNTIME
interface Test2 : Test {
@kotlin.annotations.JvmDefault
@JvmDefault
override fun test(): String {
return super.test()
}
@@ -11,7 +11,7 @@ interface Test {
// JVM_TARGET: 1.8
// WITH_RUNTIME
interface Test2 : Test {
@kotlin.annotations.JvmDefault
@JvmDefault
override fun test(): String {
return super.test()
}
@@ -10,7 +10,7 @@ interface Test {
// JVM_TARGET: 1.8
// WITH_RUNTIME
interface Test2 : Test {
@kotlin.annotations.JvmDefault
@JvmDefault
override val test: String
get() = super.test
}