summaryrefslogtreecommitdiff
path: root/test/pending/run/macro-expand-implicit-macro-defeats-type-inference/Impls_1.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-09-15 14:57:03 -0700
committerPaul Phillips <paulp@improving.org>2012-09-15 14:57:03 -0700
commit1bdc43ccf3c411c5f1455e3cfb365ad12bebb0ea (patch)
tree8a4e0f285145d1f429096ad8dc08b90e846b5c38 /test/pending/run/macro-expand-implicit-macro-defeats-type-inference/Impls_1.scala
parent930c85d6c96507d798d1847ea078eebf93dc0acb (diff)
parent3262f7072b4060b1058acb6d772eaa61d4dec1d4 (diff)
downloadscala-1bdc43ccf3c411c5f1455e3cfb365ad12bebb0ea.tar.gz
scala-1bdc43ccf3c411c5f1455e3cfb365ad12bebb0ea.tar.bz2
scala-1bdc43ccf3c411c5f1455e3cfb365ad12bebb0ea.zip
Merge pull request #1305 from paulp/merge-210
Merge 210
Diffstat (limited to 'test/pending/run/macro-expand-implicit-macro-defeats-type-inference/Impls_1.scala')
-rw-r--r--test/pending/run/macro-expand-implicit-macro-defeats-type-inference/Impls_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pending/run/macro-expand-implicit-macro-defeats-type-inference/Impls_1.scala b/test/pending/run/macro-expand-implicit-macro-defeats-type-inference/Impls_1.scala
index 26d4a45fee..15bcb581c8 100644
--- a/test/pending/run/macro-expand-implicit-macro-defeats-type-inference/Impls_1.scala
+++ b/test/pending/run/macro-expand-implicit-macro-defeats-type-inference/Impls_1.scala
@@ -1,7 +1,7 @@
import scala.reflect.macros.Context
object Impls {
- def foo[T: c.AbsTypeTag](c: Context): c.Expr[List[T]] = c.universe.reify {
+ def foo[T: c.WeakTypeTag](c: Context): c.Expr[List[T]] = c.universe.reify {
println("openImplicits are: " + c.literal(c.openImplicits.toString).splice)
println("enclosingImplicits are: " + c.literal(c.enclosingImplicits.toString).splice)
println("typetag is: " + c.literal(c.tag[T].toString).splice)