summaryrefslogblamecommitdiff
path: root/test/files/run/t1505.scala
blob: a246e8a35b451f85e4d78b2d712801ef9158d15f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                      
                         

                                 
 

                                 
 
object P extends Enumeration(0, "A", "B", "C") { val A, B, C = Value }

object Q extends Enumeration {
  val A = Value("A")
  val B = Value("B")
  val C = Value("C")
}

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

object Test extends App {
  assert(P(0) == P.withName("A"))
  assert(P.C == P.withName("C"))

  assert(Q(0) == Q.withName("A"))
  assert(Q.C == Q.withName("C"))
}