summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-04-17 22:49:07 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-04-17 22:59:59 +0200
commit745fe4e36631f86665eb1bef9cb22e6623894a56 (patch)
treebe29a95afaa7849a327da9de6b5675c4f9c4eaec /src
parent2093bccc56cbfb77dbcb6e8e3224d2416feb39fb (diff)
downloadscala-745fe4e36631f86665eb1bef9cb22e6623894a56.tar.gz
scala-745fe4e36631f86665eb1bef9cb22e6623894a56.tar.bz2
scala-745fe4e36631f86665eb1bef9cb22e6623894a56.zip
fixes tests
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/reflect/makro/runtime/Reifiers.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/reflect/makro/runtime/Reifiers.scala b/src/compiler/scala/reflect/makro/runtime/Reifiers.scala
index 3586adc590..7c96b568bd 100644
--- a/src/compiler/scala/reflect/makro/runtime/Reifiers.scala
+++ b/src/compiler/scala/reflect/makro/runtime/Reifiers.scala
@@ -27,7 +27,7 @@ trait Reifiers {
def reifyErasure(tpe: Type): Tree = {
val positionBearer = enclosingMacros.find(c => c.macroApplication.pos != NoPosition).map(_.macroApplication).getOrElse(EmptyTree).asInstanceOf[Tree]
- val typetagInScope = callsiteTyper.context.withMacrosDisabled(callsiteTyper.resolveTypeTag(positionBearer, gen.mkAttributedRef(Reflect_mirror).tpe, tpe, full = true))
+ val typetagInScope = callsiteTyper.context.withMacrosDisabled(callsiteTyper.resolveTypeTag(positionBearer, singleType(Reflect_mirror.owner.thisPrefix, Reflect_mirror), tpe, full = true))
def typetagIsSynthetic(tree: Tree) = tree.isInstanceOf[Block] || (tree exists (sub => sub.symbol == TypeTagModule || sub.symbol == ConcreteTypeTagModule))
typetagInScope match {
case success if !success.isEmpty && !typetagIsSynthetic(success) =>