summaryrefslogtreecommitdiff
path: root/test/files/run/macro-repl-dontexpand.check
blob: 6ecc9245facd53d704537398fab11a435c486a35 (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.blackbox.Context) = ???
bar1: (c: scala.reflect.macros.blackbox.Context)Nothing

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

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

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

scala> :quit