summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-09-14 10:11:08 -0700
committerPaul Phillips <paulp@improving.org>2012-09-14 10:11:08 -0700
commitf68201c469725c255ae2786f0ac1e37bc5f30a7a (patch)
tree5ad2635c9fa1b0842fca77f8c01b4db52316a15a /src
parente9c01dd1cedf15c946c03ef1e9d23ef6db275f2b (diff)
downloadscala-f68201c469725c255ae2786f0ac1e37bc5f30a7a.tar.gz
scala-f68201c469725c255ae2786f0ac1e37bc5f30a7a.tar.bz2
scala-f68201c469725c255ae2786f0ac1e37bc5f30a7a.zip
"Hot fix" for broken build.
Two pull requests crossed in the night.
Diffstat (limited to 'src')
-rw-r--r--src/partest/scala/tools/partest/package.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/partest/scala/tools/partest/package.scala b/src/partest/scala/tools/partest/package.scala
index 49d3ed301c..16a95c8966 100644
--- a/src/partest/scala/tools/partest/package.scala
+++ b/src/partest/scala/tools/partest/package.scala
@@ -91,7 +91,7 @@ package object partest {
def trace[A](a: A) = macro traceImpl[A]
import scala.reflect.macros.Context
- def traceImpl[A: c.AbsTypeTag](c: Context)(a: c.Expr[A]): c.Expr[A] = {
+ def traceImpl[A: c.WeakTypeTag](c: Context)(a: c.Expr[A]): c.Expr[A] = {
import c.universe._
val exprCode = c.literal(show(a.tree))
val exprType = c.literal(show(a.actualType))