Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
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