27 lines
294 B
Kotlin
Vendored
27 lines
294 B
Kotlin
Vendored
// !USE_EXPERIMENTAL: kotlin.RequiresOptIn
|
|
// FILE: api.kt
|
|
|
|
package api
|
|
|
|
@RequiresOptIn
|
|
annotation class E
|
|
|
|
open class Base {
|
|
@E
|
|
open fun foo() {}
|
|
}
|
|
|
|
// FILE: usage.kt
|
|
|
|
package usage
|
|
|
|
import api.*
|
|
|
|
class Derived : Base() {
|
|
override fun foo() {}
|
|
}
|
|
|
|
fun test(b: Base) {
|
|
b.foo()
|
|
}
|