Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
danglingAnnotationInLocalClass.fir.kt
blob: 741f409e72dff5f750021c34f60922667de57ba8 [
file
]
annotation
class
Anno
(
val position
:
String
)
fun foo
()
{
class
OriginalClass
{
val prop
=
0
@Anno
(<!
NON_CONST_VAL_USED_IN_CONSTANT_EXPRESSION
!>
"dangling $prop"
<!>)<!
SYNTAX
!><!>
}
}