10 lines
142 B
Kotlin
Vendored
10 lines
142 B
Kotlin
Vendored
// !LANGUAGE: +ProhibitLocalAnnotations
|
|
|
|
fun f() {
|
|
annotation class Anno
|
|
|
|
@Anno class Local {
|
|
annotation class Nested
|
|
}
|
|
}
|