summaryrefslogtreecommitdiff
path: root/test/pending/pos/t1107/Object.scala
blob: 0fd04695b1eb6a818d78a9b29e2bfd5a93eaba16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object O
{
   def d(t: Top) =
      t match
      {
         case s: Sub => true
         case _ => false
      }
}