Remove version requirements for -Xjvm-default=enable (1.2.40) and JvmFieldInInterface(1.2.70)

This commit is contained in:
Mikhael Bogdanov
2021-02-26 10:13:02 +01:00
parent 49aa36b70d
commit 989fea3399
5 changed files with 0 additions and 75 deletions
-8
View File
@@ -1,8 +0,0 @@
package test
interface Base {
@JvmDefault
fun foo() {}
}
interface Derived : Base
@@ -1,9 +0,0 @@
package test
interface Base {
companion object {
@Suppress("INAPPLICABLE_JVM_FIELD")
@JvmField
val foo = object : Base {}
}
}