summaryrefslogtreecommitdiff
path: root/test/files/neg/t1049.scala
blob: 2f59ed3c09e4321ade5cfbb9bee42dccaa7454f9 (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(aa : tttt[String, String]) = {
        0 match {
            case a : a.MapTo =>
        }
    }
}