Files

9 lines
98 B
Kotlin
Vendored

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