Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
c234f72ea4dcebd1ff29c5a1fcd540f29a83be46
/
.
/
analysis
/
low-level-api-fir
/
testData
/
lazyResolve
/
classes
/
annotationWithConstantFromNestedClass.kt
blob: 51580198b77659c4132b3b5ef63f926885e9022e [
file
]
annotation
class
Anno
(
val number
:
Int
)
class
Outer
{
companion
object
{
const
val CONSTANT_FROM_COMPANION
=
42
@Anno
(
CONSTANT_FROM_COMPANION
)
class
N
<caret>
ested
}
}