Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
constantFromOuterScopeAsAnnotaionParameter.kt
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
}
}