d8d38862d9
#KT-22941 Fixed
11 lines
152 B
Kotlin
Vendored
11 lines
152 B
Kotlin
Vendored
package org.test
|
|
|
|
class Outer {
|
|
@RequiresOptIn
|
|
@Retention(AnnotationRetention.BINARY)
|
|
annotation class Nested
|
|
}
|
|
|
|
@Outer.Nested
|
|
fun foo() {}
|