Files
Mikhail Glukhikh 2a8b655294 Update tests after switching to LV 2.0
Related to KT-59171
2023-09-19 15:46:27 +00:00

13 lines
225 B
Kotlin
Vendored

@file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
package a
import kotlin.internal.RequireKotlin
class Outer {
@RequireKotlin("2.44")
class Nested {
@RequireKotlin("2.88")
fun f() {}
}
}