Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
cli
/
jvm
/
wrongAnnotationArgumentInCtor.kt
blob: 51ae39fe1924a99e3f87a7f4761271c97802ed12 [
file
]
@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
)
}