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
@@ -4,7 +4,7 @@
// FULL_JDK
interface Test<T> {
@kotlin.annotations.JvmDefault
@JvmDefault
fun test(p: T): T {
return null!!
}
@@ -15,7 +15,7 @@ interface Test<T> {
}
interface Test2: Test<String> {
@kotlin.annotations.JvmDefault
@JvmDefault
override fun test(p: String): String {
return p
}