summaryrefslogtreecommitdiff
path: root/test/files/run/t6331b.scala
blob: 3a560ea64b08739e75d442975430aa8bfc08ade3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import scala.tools.partest.Util.trace
import scala.util.control.Exception.allCatch


object Test extends App {
  def intercept = allCatch.withApply(_.getClass)
  val t: Boolean = true
  trace(if (t) -0d else 0d)
  trace(if (t) 0d else -0d)
  trace(intercept(if (???) -0d else 0d))
  trace(intercept(if (???) 0d else 0d))
  trace(intercept(if (???) () else ()))
}