summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-bundle-nonmacro.scala
blob: c7d99f4582908bdd7d51a001cb8c5f9a1b3fe654 (plain) (blame)
1
2
3
4
5
6
7
8
9
import scala.language.experimental.macros

trait Bundle {
  def impl = ???
}

object Macros {
  def foo = Bundle.impl
}