aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t1505.scala
blob: 8131d03df6a5cf5ae8bb3c0fc8149252c7b68bd6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                              
                                             










                                                                                   
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 dotty.runtime.LegacyApp {
  assert(Q(0) == Q.withName("A"))
  assert(Q.C == Q.withName("C"))

  assert(R(0) == R.withName("A"))
  assert(R.C == R.withName("C"))

  var failed = false
  try { Q.withName("x") } catch { case _: NoSuchElementException => failed = true }
  assert(failed)

}