16 lines
285 B
Kotlin
Vendored
16 lines
285 B
Kotlin
Vendored
// "Add '@MyExperimentalAPI' annotation to containing class 'Bar'" "true"
|
|
// COMPILER_ARGUMENTS: -Xopt-in=kotlin.RequiresOptIn
|
|
// WITH_RUNTIME
|
|
|
|
@RequiresOptIn
|
|
annotation class MyExperimentalAPI
|
|
|
|
@MyExperimentalAPI
|
|
fun foo() {}
|
|
|
|
class Bar {
|
|
fun bar() {
|
|
foo<caret>()
|
|
}
|
|
}
|