Update JVM metadata version to 1.4.0

This commit is contained in:
Alexander Udalov
2020-01-24 18:27:40 +01:00
parent 4d93b3d5ab
commit c08c3d4d9b
9 changed files with 47 additions and 22 deletions
@@ -0,0 +1,12 @@
@file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
package a
import kotlin.internal.RequireKotlin
class Outer {
@RequireKotlin("1.44")
class Nested {
@RequireKotlin("1.88")
fun f() {}
}
}