blob: 239a534f27cae80bf64e953bf9ed9987a7781d9e [file]
// RUN_PIPELINE_TILL: BACKEND
// ISSUE: KT-69806
import Outer.AllOpen
annotation class Some
@AllOpen
class Outer {
@Some
annotation class AllOpen
}
// ----------------------------------------------
@Outer2.AllOpen2
class Outer1 {
@Some
annotation class AllOpen
}
@Outer1.AllOpen
class Outer2 {
@Some
annotation class AllOpen2
}
/* GENERATED_FIR_TAGS: annotationDeclaration, classDeclaration, nestedClass */