summaryrefslogblamecommitdiff
path: root/test/files/neg/macro-bundle-priority-bundle.scala
blob: ce831a71217fc3d9140fb4e6f16e1edafdd5e23c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                         
import scala.reflect.macros.whitebox._
import scala.language.experimental.macros

class Macros(val c: Context) {
  def impl(x: c.Tree) = ???
}

object Macros {
  def impl(c: Context)(x: c.Tree) = ???
}

object Test extends App {
  def foo: Unit = macro Macros.impl
}