aboutsummaryrefslogtreecommitdiff
path: root/src/scala/annotation/internal/Alias.scala
blob: e3f56e70cb1fa30f0d1cfb2cfca5f855bc1f2ca5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package scala.annotation.internal

import scala.annotation.Annotation

/** An annotation to record a Scala2 pickled alias.
 *  @param aliased  A TermRef pointing to the aliased field.
 */
class Alias(aliased: Any) extends Annotation {

}