summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/reify/codegen/GenTrees.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-02-08 02:32:32 -0800
committerEugene Burmako <xeno.by@gmail.com>2013-02-08 02:32:32 -0800
commit3d75d217b2cc9199c2698ed8da100fe92b1db2be (patch)
tree67f1eddbed73b00ebde93ce1dee3670e245b9a64 /src/compiler/scala/reflect/reify/codegen/GenTrees.scala
parent62b9e494115cb7a0c4461dbef348c58dd69d7c2b (diff)
parent96b0eff51e18a1abd9761451e08e63c9a3eb9ea6 (diff)
downloadscala-3d75d217b2cc9199c2698ed8da100fe92b1db2be.tar.gz
scala-3d75d217b2cc9199c2698ed8da100fe92b1db2be.tar.bz2
scala-3d75d217b2cc9199c2698ed8da100fe92b1db2be.zip
Merge pull request #2085 from scalamacros/ticket/5824
SI-5824 Fix crashes in reify with _*
Diffstat (limited to 'src/compiler/scala/reflect/reify/codegen/GenTrees.scala')
-rw-r--r--src/compiler/scala/reflect/reify/codegen/GenTrees.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/reflect/reify/codegen/GenTrees.scala b/src/compiler/scala/reflect/reify/codegen/GenTrees.scala
index 949f7f1799..06e287f62f 100644
--- a/src/compiler/scala/reflect/reify/codegen/GenTrees.scala
+++ b/src/compiler/scala/reflect/reify/codegen/GenTrees.scala
@@ -175,7 +175,7 @@ trait GenTrees {
// then we can reify the scrutinee as a symless AST and that will definitely be hygienic
// why? because then typechecking of a scrutinee doesn't depend on the environment external to the quasiquote
// otherwise we need to reify the corresponding type
- if (sym.isLocalToReifee || tpe.isLocalToReifee)
+ if (sym.isLocalToReifee || tpe.isLocalToReifee || treeInfo.isWildcardStarType(tree))
reifyProduct(tree)
else {
if (reifyDebug) println("reifying bound type %s (underlying type is %s)".format(sym, tpe))