summaryrefslogtreecommitdiff
path: root/test/files/pos/macro-bundle-disambiguate-nonbundle.scala
blob: cb66f28a0b20e5b300e5aea60bb4aca151a8899b (plain) (blame)
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) = ???
}

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