blob: 0e3298af75a3b5104646ea9b7bd9a9d60bca9b03 [file]
// FIR_IDENTICAL
annotation class Anno(val number: Int)
class Outer {
companion object {
const val CONSTANT_FROM_COMPANION = 42
@Anno(CONSTANT_FROM_COMPANION)
class Nested
}
}