aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t3835.scala
blob: 7863916f42d326e1e84dba4d824517c0fd0ae544 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                             
object Test extends dotty.runtime.LegacyApp {
  // work around optimizer bug SI-5672  -- generates wrong bytecode for switches in arguments
  // virtpatmat happily emits a switch for a one-case switch
  // 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)
}