aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0061.scala
blob: 0228413fab6148273dbe1469e78733f459973fe9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object O {

  class testClass ;

  case class testA() extends testClass ;

  def ga( x:testClass ) = x match {
      case testA() => ()
  }
}