summaryrefslogtreecommitdiff
path: root/test/files/run/macro-repl-dontexpand.check
blob: 9f538c04b66fb04b3b264f62f52c2f0013f38f7c (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: Nothing

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

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

scala>