Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
loadJava8
/
compiledKotlinWithStdlib
/
annotations
/
RepeatableAnnotationWithImplicitContainer.kt
blob: a383a471455725127de5455cb069de973942bf3b [
file
]
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