summaryrefslogblamecommitdiff
path: root/test/files/run/macro-enclosures/Test_2.scala
blob: 779fe5211ea34cc3012f071f2afd5b8a10c1129b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                         
object Test extends App {
  test.Test.test
}

package test {
  object Test {
    def test = {
      Macros.foo
    }
  }
}