Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
!><!>
}
}