aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/reify_ann4.scala
blob: 074ceb81548c74d2287fcdb6546ab60380a4f303 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import scala.reflect.runtime.universe._
import scala.reflect.runtime.{universe => ru}
import scala.reflect.runtime.{currentMirror => cm}
import scala.tools.reflect.ToolBox
import scala.annotation._
import scala.annotation.meta._

object Test extends dotty.runtime.LegacyApp {
  // test 1: reify
  val tree = reify{
    class D extends StaticAnnotation
    class C
    val c1 = new C @D
    //val c2 = (new C) @D // illegal syntax
    //val c3 = c1 @D // illegal syntax
  }.tree
  println(tree.toString)

  // test 2: import and typecheck
  val toolbox = cm.mkToolBox()
  val ttree = toolbox.typecheck(tree)
  println(ttree.toString)

  // test 3: import and compile
  toolbox.eval(tree)
}