summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-12-11 13:19:16 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-12-11 13:19:16 -0800
commitba7bf5e2296c5148c16eabc52d1550040dea06b3 (patch)
treee29c725384fd7686a17443f8b9141e2d755be565 /test
parentda919ec24cecbb8a1eb7ccbf513ecfa42670459e (diff)
parent47562e7adbf8577789b3432f4bfbb36d786c6b32 (diff)
downloadscala-ba7bf5e2296c5148c16eabc52d1550040dea06b3.tar.gz
scala-ba7bf5e2296c5148c16eabc52d1550040dea06b3.tar.bz2
scala-ba7bf5e2296c5148c16eabc52d1550040dea06b3.zip
Merge pull request #3261 from adriaanm/ticket-6426
Revert ", importable _."
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/t6426.check7
-rw-r--r--test/files/neg/t6426.scala5
2 files changed, 0 insertions, 12 deletions
diff --git a/test/files/neg/t6426.check b/test/files/neg/t6426.check
deleted file mode 100644
index 149f74c4de..0000000000
--- a/test/files/neg/t6426.check
+++ /dev/null
@@ -1,7 +0,0 @@
-t6426.scala:4: error: wildcard invalid as backquoted identifier
- println(`_`.Buffer(0))
- ^
-t6426.scala:5: error: ')' expected but '}' found.
-}
-^
-two errors found
diff --git a/test/files/neg/t6426.scala b/test/files/neg/t6426.scala
deleted file mode 100644
index a27d18eb58..0000000000
--- a/test/files/neg/t6426.scala
+++ /dev/null
@@ -1,5 +0,0 @@
-class A {
- import collection.{mutable => _, _}
-
- println(`_`.Buffer(0))
-}