aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t1168.scala
blob: 08f1b5cd90e763cbaa8b745df6e3c06f1cbf60fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
object Test extends App {

  trait SpecialException extends Throwable {}

  try {
    throw new Exception
  } catch {
    case e : SpecialException => {
      println("matched SpecialException: " + e)
      assume(e.isInstanceOf[SpecialException])
    }
    case e : Exception => {
      assume(e.isInstanceOf[Exception])
    }
  }
}