Files
kotlin/idea/testData/quickfix/modifiers/nestedAnnotationClass.kt

8 lines
157 B
Kotlin
Vendored

// "Add 'inner' modifier" "false"
// ERROR: Annotation class is not allowed here
class A() {
inner class B() {
annotation class <caret>C
}
}