Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e5523c196e17d8fdbb5635aa785d6c182ed3f821
/
.
/
compiler
/
testData
/
loadJava8
/
compiledKotlinWithStdlib
/
annotations
/
RepeatableAnnotationWithImplicitContainer.kt
blob: a383a471455725127de5455cb069de973942bf3b [
file
] [
log
] [
blame
]
package
test
@Repeatable
@Target
(
AnnotationTarget
.
CLASS
,
AnnotationTarget
.
FUNCTION
,
AnnotationTarget
.
TYPEALIAS
)
annotation
class
Anno
(
val code
:
Int
)
@Anno
(
1
)
@Anno
(
2
)
class
Z
@Anno
(
3
)
@Anno
(
4
)
fun f
()
{}
@Anno
(
5
)
@Anno
(
6
)
typealias S
=
String