summaryrefslogblamecommitdiff
path: root/test/files/neg/macro-without-xmacros-a/Macros_2.scala
blob: 62f9dcf50543a412d0c468f6e97b6a2e1941022f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                         
import Impls._

object Macros {
  object Shmacros {
    def foo(x: Int): Int = macro foo_impl
  }
  def bar(x: Int): Int = macro bar_impl
}

class Macros {
  def quux(x: Int): Int = macro quux_impl
}