summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-11-03 10:07:48 -0700
committerPaul Phillips <paulp@improving.org>2012-11-03 10:09:07 -0700
commit357f45c1152728a5e461312f462aa7ab63e2adec (patch)
tree6c11462db2bc0862ecc1eef42cb235a775155cfb /test
parent0475fbd6e0cad15460d87eda52c9487f7ff171d3 (diff)
downloadscala-357f45c1152728a5e461312f462aa7ab63e2adec.tar.gz
scala-357f45c1152728a5e461312f462aa7ab63e2adec.tar.bz2
scala-357f45c1152728a5e461312f462aa7ab63e2adec.zip
Fix for SI-6426, importable _.
Prohibit `_` as an identifier, it can only bring badness.
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/t6426.check7
-rw-r--r--test/files/neg/t6426.scala5
2 files changed, 12 insertions, 0 deletions
diff --git a/test/files/neg/t6426.check b/test/files/neg/t6426.check
new file mode 100644
index 0000000000..149f74c4de
--- /dev/null
+++ b/test/files/neg/t6426.check
@@ -0,0 +1,7 @@
+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
new file mode 100644
index 0000000000..a27d18eb58
--- /dev/null
+++ b/test/files/neg/t6426.scala
@@ -0,0 +1,5 @@
+class A {
+ import collection.{mutable => _, _}
+
+ println(`_`.Buffer(0))
+}