6c439ae85a
#KT-34744
23 lines
860 B
Kotlin
Vendored
23 lines
860 B
Kotlin
Vendored
// "Add '@MyExperimentalAPI' annotation to containing class 'Derived'" "false"
|
|
// COMPILER_ARGUMENTS: -Xopt-in=kotlin.RequiresOptIn
|
|
// WITH_RUNTIME
|
|
// ACTION: Add '@MyExperimentalAPI' annotation to 'foo'
|
|
// ACTION: Add '@OptIn(MyExperimentalAPI::class)' annotation to 'foo'
|
|
// ACTION: Add '@OptIn(MyExperimentalAPI::class)' annotation to containing class 'Derived'
|
|
// ACTION: Add '-Xopt-in=MyExperimentalAPI' to module light_idea_test_case compiler arguments
|
|
// ACTION: Enable a trailing comma by default in the formatter
|
|
// ERROR: This declaration overrides experimental member of supertype 'Base' and must be annotated with '@MyExperimentalAPI'
|
|
|
|
@RequiresOptIn
|
|
@Target(AnnotationTarget.FUNCTION)
|
|
annotation class MyExperimentalAPI
|
|
|
|
open class Base {
|
|
@MyExperimentalAPI
|
|
open fun foo() {}
|
|
}
|
|
|
|
class Derived : Base() {
|
|
override fun foo<caret>() {}
|
|
}
|