summaryrefslogtreecommitdiff
path: root/test/files/pos/t1049.scala
blob: dad83579a63dc8ca1d6cfc26d725e56ad0309d21 (plain) (blame)
1
2
3
4
5
6
7
8
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 =>
        }
    }
}