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