aboutsummaryrefslogtreecommitdiff
path: root/src/scala/annotation/internal/Repeated.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/scala/annotation/internal/Repeated.scala')
-rw-r--r--src/scala/annotation/internal/Repeated.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/scala/annotation/internal/Repeated.scala b/src/scala/annotation/internal/Repeated.scala
new file mode 100644
index 000000000..75eb3bc25
--- /dev/null
+++ b/src/scala/annotation/internal/Repeated.scala
@@ -0,0 +1,10 @@
+package scala.annotation.internal
+
+import scala.annotation.Annotation
+
+/** An annotation produced by desugaring to indicate that a
+ * sequence is a repeated parameter. I.e.
+ *
+ * T* is expanded by Desugar to Seq[T] @Repeated
+ */
+final class Repeated() extends Annotation