summaryrefslogblamecommitdiff
path: root/test/files/run/macro-def-path-dependent/Test_6.scala
blob: a8b50ce7d2f08df2b56492fa793c8ab4fd55f57e (plain) (tree)
1
2
3
4
5
6
7
8
9

              
                                       
                                            


                                 
                                                                                                     
 
package test56

import scala.reflect.runtime.universe._
import scala.reflect.macros.blackbox.Context
import scala.reflect.api.Universe

object Macros {
  def materializeTypeTag[T](u: Universe)(e: T): u.TypeTag[T] = macro Impls.materializeTypeTag_impl[T]
}