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