Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/constantFromOuterScopeAsAnnotaionParameter.kt
T
2023-10-17 20:32:11 +00:00

12 lines
210 B
Kotlin
Vendored

// FIR_IDENTICAL
annotation class Anno(val number: Int)
class Outer {
companion object {
const val CONSTANT_FROM_COMPANION = 42
@Anno(CONSTANT_FROM_COMPANION)
class Nested
}
}