aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t6102.scala
blob: 225791bb1869cc5f683cef6e20ed4f2157ce1914 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13



                                                           
                                         







                    
// SI-6102 Wrong bytecode in lazyval + no-op finally clause

object Test {

  def main(args: Array[String]): Unit = {
    try {
      val x = 3
    } finally {
      print("hello")
    }
  }
}