aboutsummaryrefslogtreecommitdiff
path: root/tests/run/virtpatmat_try.scala
blob: 2cd05b79966bbb653d8437902e6890b9fcdd1a4c (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
object Test extends dotty.runtime.LegacyApp {
  case class A(val x: String) extends Throwable
  class B extends Exception { override def toString = "B" }
  def bla = 0

  try {
    throw new A("meh")
  } catch { // this should emit a "catch-switch"
    case y: A => println(y.x)
    case (_ : A | _ : B)  => println("B")
    case _: Throwable => println("other")
  }

  try {
    throw new B()
  } catch { // case classes and alternative flattening aren't supported yet, but could be in principle
    // case A(x) => println(x)
    case y: A => println(y.x)
    case x@((_ : A) | (_ : B))  => println(x)
    case _: Throwable => println("other")
  }

 def simpleTry: Unit = {
    try {
      bla
    } catch {
      case x: Exception if x.getMessage == "test" => println("first case " + x)
      case x: Exception => println("second case " + x)
    }
  }

  def typedWildcardTry: Unit = {
    try { bla } catch { case _: ClassCastException => bla }
  }

  def wildcardTry: Unit = {
    try { bla } catch { case _: Throwable => bla }
  }

  def tryPlusFinally: Unit = {
    try { bla } finally { println("finally") }
  }

  def catchAndPassToLambda: Unit = {
    try { bla } catch { case ex: Exception => val f = () => ex }
  }
}