summaryrefslogblamecommitdiff
path: root/test/files/pos/t7649.scala
blob: d70dc05ea49e6e26cdc96bb9abd006d6828f60b7 (plain) (tree)
1
2
3
4
5
6
7
             
                                                    



                                                  
                            












                                        
object Test {
  val c: scala.reflect.macros.blackbox.Context = ???
  import c.universe._
  reify {
    // The lookup of the implicit WeakTypeTag[Any]
    // was triggering an unpositioned tree.
    c.Expr[Any](q"0").splice
  }

  import scala.reflect.ClassTag
  def ct[A: ClassTag]: Expr[A] = ???
  def tt[A: TypeTag]: Expr[A] = ???
  def wtt[A: WeakTypeTag]: Expr[A] = ???

  reify {
    ct[String].splice
    tt[String].splice
    wtt[String].splice
  }
}