Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
initializerWithNestedAnnotation.kt
blob: de3a7bb31af934167e081cc2bbaf41a4ed10a53f [
file
]
// FIR_IDENTICAL
annotation
class
Anno
(
val position
:
String
)
class
MyClass
{
<!
WRONG_ANNOTATION_TARGET
!>
@Anno
(
"init $prop"
)<!>
init
{
}
companion
object
{
private
const
val prop
=
0
}
}