aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t3671.scala
blob: afb3a539d19a7af164640835607e57a744fb0e22 (plain) (blame)
1
2
3
4
5
6
7
object Crash {
  def crash(value: Int): Unit =
      value match {
        case java.lang.Integer.MAX_VALUE => println("MAX_VALUE")
        case java.lang.Integer.MIN_VALUE => println("MIN_VALUE")
       }
}