summaryrefslogtreecommitdiff
path: root/test/files/run/t6955.scala
blob: 2610acdec4a7ab0fbb3fb3b976e407ea478e84bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import scala.tools.partest.IcodeTest

class Switches {
  type Tag = Byte

  def switchBad(i: Tag): Int = i match { // notice type of i is Tag = Byte
    case 1 => 1
    case 2 => 2
    case 3 => 3
    case _ => 0
  }

  def switchOkay(i: Byte): Int = i match { // notice type of i is Byte
    case 1 => 1
    case 2 => 2
    case 3 => 3
    case _ => 0
  }
}

object Test extends IcodeTest {
  // ensure we get two switches out of this -- ignore the rest of the output for robustness
  // exclude the constant we emit for the "SWITCH ..." string below (we get the icode for all the code you see in this file)
  override def show() = println(collectIcode("").filter(x => x.indexOf("SWITCH ...") >= 0 && x.indexOf("CONSTANT(") == -1).size)
}