summaryrefslogtreecommitdiff
path: root/test/files/run/macro-repl-dontexpand.check
blob: 3ba877b59d352a780182f96a845a971793c216fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Type in expressions to have them evaluated.
Type :help for more information.

scala> def bar1(c: scala.reflect.macros.BlackboxContext) = ???
bar1: (c: scala.reflect.macros.BlackboxContext)Nothing

scala> def foo1 = macro bar1
defined term macro foo1: Any

scala> def bar2(c: scala.reflect.macros.WhiteboxContext) = ???
bar2: (c: scala.reflect.macros.WhiteboxContext)Nothing

scala> def foo2 = macro bar2
defined term macro foo2: Any

scala>