summaryrefslogblamecommitdiff
path: root/test/files/run/t6187.check
blob: c833b454431ae26dfcaf42c10068fec9d04fec16 (plain) (tree)
1
2
3
4
5
6
7
8


                                           
                                                                          
                                   
                                     
 
                                                                                             


                                              
                                                                                                                           

                                                      
                                         
















                                                       
Type in expressions to have them evaluated.
Type :help for more information.

scala> import language.experimental.macros, reflect.macros.BlackboxContext
import language.experimental.macros
import reflect.macros.BlackboxContext

scala> def macroImpl[T: c.WeakTypeTag](c: BlackboxContext)(t: c.Expr[T]): c.Expr[List[T]] = {
  val r = c.universe.reify { List(t.splice) }
  c.Expr[List[T]]( c.resetLocalAttrs(r.tree) )
}
macroImpl: [T](c: scala.reflect.macros.BlackboxContext)(t: c.Expr[T])(implicit evidence$1: c.WeakTypeTag[T])c.Expr[List[T]]

scala> def demo[T](t: T): List[T] = macro macroImpl[T]
defined term macro demo: [T](t: T)List[T]

scala> def m[T](t: T): List[List[T]] =
  demo( List((t,true)) collect { case (x,true) => x } )
m: [T](t: T)List[List[T]]

scala> m(List(1))
res0: List[List[List[Int]]] = List(List(List(1)))

scala> // Showing we haven't added unreachable warnings

scala> List(1) collect { case x => x }
res1: List[Int] = List(1)

scala> List("") collect { case x => x }
res2: List[String] = List("")

scala>