summaryrefslogtreecommitdiff
path: root/test/files/pos/t1049.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1049.scala')
-rwxr-xr-xtest/files/pos/t1049.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/pos/t1049.scala b/test/files/pos/t1049.scala
new file mode 100755
index 0000000000..dad83579a6
--- /dev/null
+++ b/test/files/pos/t1049.scala
@@ -0,0 +1,9 @@
+class J {
+ type tttt[a, b] <: _root_.scala.collection.mutable.Map[a, b]
+
+ def r(a : tttt[String, String]) = {
+ 0 match {
+ case a : a.MapTo =>
+ }
+ }
+}