Files
kotlin-fork/compiler/testData/diagnostics/tests/localClasses/localAnnotationClass.kt
T

10 lines
247 B
Kotlin
Vendored

// !LANGUAGE: -ProhibitLocalAnnotations
fun f() {
<!LOCAL_ANNOTATION_CLASS_WARNING!>annotation class Anno<!>
@Anno class Local {
<!LOCAL_ANNOTATION_CLASS_WARNING!>annotation <!NESTED_CLASS_NOT_ALLOWED!>class Nested<!><!>
}
}