summaryrefslogtreecommitdiff
path: root/test/files/pos/macros.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/macros.scala')
-rw-r--r--test/files/pos/macros.scala6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/files/pos/macros.scala b/test/files/pos/macros.scala
index 8a98195978..303610d464 100644
--- a/test/files/pos/macros.scala
+++ b/test/files/pos/macros.scala
@@ -1,10 +1,8 @@
object Test {
- class C {
+ class C {
def macro foo[T](xs: List[T]): T = (T, xs) match {
- case (t1: glob.Type, t2: glob.Tree) => t2
+ case (t1: Type, t2: Tree) => t2
}
}
}
-
-