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.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/files/pos/macros.scala b/test/files/pos/macros.scala
deleted file mode 100644
index 303610d464..0000000000
--- a/test/files/pos/macros.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-object Test {
-
- class C {
- def macro foo[T](xs: List[T]): T = (T, xs) match {
- case (t1: Type, t2: Tree) => t2
- }
- }
-}