Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49b2ac1b100c5042a0e98582713938062efa6a31
/
.
/
compiler
/
testData
/
cli
/
jvm
/
wrongAnnotationArgumentInCtor.kt
blob: 51ae39fe1924a99e3f87a7f4761271c97802ed12 [
file
] [
log
] [
blame
]
@Target
(
AnnotationTarget
.
FIELD
,
AnnotationTarget
.
CLASS
)
annotation
class
Anno
class
UnresolvedArgument
(
@Anno
(
BLA
)
val s
:
Int
)
class
WithoutArguments
(
@Deprecated
val s
:
Int
)
fun test
()
{
UnresolvedArgument
(
3
)
WithoutArguments
(
0
)
}