summaryrefslogtreecommitdiff
path: root/test/files/run/macroPlugins-macroExpand/Macros_2.scala
blob: f16503b415444831328e555e632c17f00f20d431 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import scala.language.experimental.macros
import scala.reflect.macros.BlackboxContext

object Macros {
  def impl1(c: BlackboxContext) = {
    import c.universe._
    q"""println("impl1")"""
  }

  def impl2(c: BlackboxContext) = {
    import c.universe._
    q"""println("impl2")"""
  }

  def foo1: Unit = macro impl1

  def foo2: Unit = macro impl2
}