aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/pos/t7649.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/pos/t7649.scala')
-rw-r--r--tests/disabled/macro/pos/t7649.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/disabled/macro/pos/t7649.scala b/tests/disabled/macro/pos/t7649.scala
new file mode 100644
index 000000000..d70dc05ea
--- /dev/null
+++ b/tests/disabled/macro/pos/t7649.scala
@@ -0,0 +1,20 @@
+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
+ }
+}