Files
kotlin-fork/compiler/testData/cli/jvm/experimentalNested.kt
T
2021-06-08 11:37:27 +03:00

11 lines
152 B
Kotlin
Vendored

package org.test
class Outer {
@RequiresOptIn
@Retention(AnnotationRetention.BINARY)
annotation class Nested
}
@Outer.Nested
fun foo() {}