summaryrefslogtreecommitdiff
path: root/test/files/run/t3835.scala
blob: c120a61f6eb6b3476c7a44eac881b2c236799557 (plain) (blame)
1
2
3
4
5
6
7
8
9
object Test extends App {
  // work around optimizer bug SI-5672  -- generates wrong bytecode for switches in arguments
  // virtpatmat happily emits a switch for a one-case switch, whereas -Xoldpatmat did not
  // this is not the focus of this test, hence the temporary workaround
  def a = (1, 2, 3) match { case (r, \u03b8, \u03c6) => r + \u03b8 + \u03c6 }
  println(a)
  def b = (1 match { case \u00e9 => \u00e9 })
  println(b)
}