summaryrefslogtreecommitdiff
path: root/test/files/pos/t3671.scala
blob: 1ca9327bb7bf8820fe4e5c1aed20f984f4c13229 (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")
       }
}