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

View File

@@ -3,7 +3,7 @@
// WITH_RUNTIME
interface Test {
@kotlin.annotations.JvmDefault
@JvmDefault
fun test(): String {
return "OK"
}

View File

@@ -3,7 +3,7 @@
// WITH_RUNTIME
interface Test {
@kotlin.annotations.JvmDefault
@JvmDefault
var z: String
get() = "OK"
set(value) {}