summaryrefslogblamecommitdiff
path: root/test/files/run/macro-repl-dontexpand.check
blob: 20d3b2d702d65fc01ce8d9e151f370c4ec72f16c (plain) (tree)
1
2
3
4
5
6
7
8
9


                                           

                                                               
 
                            
                                
 

                                                               

                            
                                

       
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>