17 lines
297 B
Plaintext
Vendored
17 lines
297 B
Plaintext
Vendored
// "Add '@MyExperimentalAPI' annotation to containing class 'Bar'" "true"
|
|
// COMPILER_ARGUMENTS: -Xopt-in=kotlin.RequiresOptIn
|
|
// WITH_RUNTIME
|
|
|
|
@RequiresOptIn
|
|
annotation class MyExperimentalAPI
|
|
|
|
@MyExperimentalAPI
|
|
fun foo() {}
|
|
|
|
@MyExperimentalAPI
|
|
class Bar {
|
|
fun bar() {
|
|
foo()
|
|
}
|
|
}
|