aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/contrib674.scala
blob: 45c9871fc4f7da6161b901a9e1d5bd6773dc610f (plain) (tree)


















                                      
// causes VerifyError with scala-2.5.1

object Test extends App {
  def bad() {
    try {
      1
    } catch {
      case e: Throwable =>
    } finally {
      try {
      } catch {
        case e: Throwable =>
      }
    }
    1
  }

  bad
}