Files
kotlin/compiler/testData/codegen/box/annotations/nestedAnnotation.kt

9 lines
98 B
Kotlin
Vendored

annotation class Foo {
annotation class Bar
}
@Foo.Bar
fun box(): String {
return "OK"
}