blob: 340959ae3978f5edf97be6122a6507b2f7014c90 [file]
// 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
}