summaryrefslogblamecommitdiff
path: root/test/files/pos/t946.scala
blob: 9f4cdbc043e23783df6b1e3f91e1cc025dbabaea (plain) (tree)
1
2
3
4
5
6
7
8


                        
            



                           
object pmbugbounds {
  trait Bar
  class Foo[t <: Bar] {}
            
  (new Foo[Bar]) match {
    case _ : Foo[x] => null
  }
}