aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0154.scala
blob: 9fb9430676cb4442e83a9ba0b70fbe25072c4e8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package test
trait MyMatchers  {
  val StringMatch = new AnyRef {}
    trait Something {
      (null : AnyRef) match {
        case (StringMatch) =>
        case _ =>
      }
   }
}