summaryrefslogblamecommitdiff
path: root/test/files/neg/macro-invalidret/Impls_1.scala
blob: a52e8d8f3992ee58dec8b835a8809bec8f0b60b1 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                            


                                             

                                                    
                                   

                                                                                 
 
import scala.reflect.macros.blackbox.Context
import scala.reflect.runtime.{universe => ru}

object Impls {
  def foo1(c: Context) = 2
  def foo2(c: Context) = ru.Literal(ru.Constant(42))
  def foo3(c: Context) = throw null
  def foo5(c: Context) = c.universe.Literal(c.universe.Constant(42))
  def foo6(c: Context) = c.Expr[Int](c.universe.Literal(c.universe.Constant(42)))
}