aboutsummaryrefslogblamecommitdiff
path: root/tests/patmat/t4333.scala.ignore
blob: 07d105c74e47de5d19296899f11a7a02825ce602 (plain) (tree)
1
2
3
4
5
6
7






                                                       
object Enum extends Enumeration { val A, B, C = Value }

object Test {
  def foo(v : Enum.Value) = v match {
    case Enum.B => println("B")
  }
}