summaryrefslogtreecommitdiff
path: root/test/files/neg
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg')
-rwxr-xr-xtest/files/neg/t1049.check4
-rwxr-xr-xtest/files/neg/t1049.scala9
2 files changed, 13 insertions, 0 deletions
diff --git a/test/files/neg/t1049.check b/test/files/neg/t1049.check
new file mode 100755
index 0000000000..4a63cb175d
--- /dev/null
+++ b/test/files/neg/t1049.check
@@ -0,0 +1,4 @@
+t1049.scala:6: error: not found: value a
+ case a : a.MapTo =>
+ ^
+one error found
diff --git a/test/files/neg/t1049.scala b/test/files/neg/t1049.scala
new file mode 100755
index 0000000000..2f59ed3c09
--- /dev/null
+++ b/test/files/neg/t1049.scala
@@ -0,0 +1,9 @@
+class J {
+ type tttt[a, b] <: _root_.scala.collection.mutable.Map[a, b]
+
+ def r(aa : tttt[String, String]) = {
+ 0 match {
+ case a : a.MapTo =>
+ }
+ }
+}