13 lines
209 B
Kotlin
Vendored
13 lines
209 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// DISABLE-ERRORS
|
|
|
|
@RequiresOptIn
|
|
annotation class FirstExperience
|
|
|
|
open class ParentTarget {
|
|
@FirstExperience open fun targetFun() {}
|
|
}
|
|
|
|
class ChildTarget : ParentTarget() {
|
|
<caret>
|
|
} |