Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
c234f72ea4dcebd1ff29c5a1fcd540f29a83be46
/
.
/
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
()
{
}
}