Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
analysis
/
low-level-api-fir
/
testData
/
lazyResolve
/
annotationParametersScript.kts
blob: 12acbdc2d9c28669d525c0f0a1fddd38b49adb67 [
file
]
enum
class
X
{
A
}
annotation
class
Anno
(
val args
:
A
.
X
)
class
B
{
@Anno
(
X
.
A
)
fun resolve
<caret>
Me
()
{
}
@Anno
(
X
.
A
)
fun foo
()
{
}
}