summaryrefslogtreecommitdiff
path: root/test/files/pos/annotated-treecopy/Impls_Macros_1.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-08-20 10:31:23 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-08-20 10:31:23 -0700
commit38d5b203745e799d819759ccce2f96655085f537 (patch)
tree5c0e664803a9682bb25c6b48658d0660d9727a02 /test/files/pos/annotated-treecopy/Impls_Macros_1.scala
parent1df7b32a15bac0c57d4371b6e081f06d9e145aaf (diff)
parent01f771e687291803da1983bdac97d9288c069bfe (diff)
downloadscala-38d5b203745e799d819759ccce2f96655085f537.tar.gz
scala-38d5b203745e799d819759ccce2f96655085f537.tar.bz2
scala-38d5b203745e799d819759ccce2f96655085f537.zip
Merge pull request #2848 from paulp/patmat2
Pattern matcher: extractors become name-based.
Diffstat (limited to 'test/files/pos/annotated-treecopy/Impls_Macros_1.scala')
-rw-r--r--test/files/pos/annotated-treecopy/Impls_Macros_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/annotated-treecopy/Impls_Macros_1.scala b/test/files/pos/annotated-treecopy/Impls_Macros_1.scala
index cf58bc3dfd..ecf8916c46 100644
--- a/test/files/pos/annotated-treecopy/Impls_Macros_1.scala
+++ b/test/files/pos/annotated-treecopy/Impls_Macros_1.scala
@@ -22,7 +22,7 @@ object Macros {
var b1 = new Transformer {
override def transform(tree: Tree): Tree = tree match {
case Ident(x) if (x==n) => Ident(TermName("_arg"))
- case tt @ TypeTree() if tt.original != null => TypeTree(tt.tpe) setOriginal transform(tt.original)
+ case tt: TypeTree if tt.original != null => TypeTree(tt.tpe) setOriginal transform(tt.original)
// without the fix to LazyTreeCopier.Annotated, we would need to uncomment the line below to make the macro work
// that's because the pattern match in the input expression gets expanded into Typed(<x>, TypeTree(<Int @unchecked>))
// with the original of the TypeTree being Annotated(<@unchecked>, Ident(<x>))