aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Annotations.scala
blob: 71e747598cd48fceae4a5e5c2862781c91a9a84a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package dotty.tools.dotc.core

import Symbols._

object Annotations {

  abstract class Annotation {
    def matches(cls: Symbol) = ???
    def appliesToModule: Boolean = ???
  }

}