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