aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/i2056.scala
blob: c4d020fb62812c76e5fbaefbe0f020193b41ba22 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                         
object Test {
  inline def crash() = {
    try {
      println("hi")
    } catch {
      case e: Exception =>
    }
  }

  def main(args: Array[String]): Unit = {
    crash()
  }
}