summaryrefslogblamecommitdiff
path: root/test/files/pos/bug1168.scala
blob: 58407e328e623e29eeee61fbe6cd4b33c9d07e61 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                              
object Test extends Application {

  trait SpecialException {}

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