aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/annotation/internal/Repeated.scala
blob: 24adc051fe270766c6751b5a169baa62221f8b78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package dotty.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