summaryrefslogblamecommitdiff
path: root/test/files/run/t6102.scala
blob: 53584055bb711211e35ce0a36ebc9601a6f9815d (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]) {
    try {
      val x = 3
    } finally {
      print("hello")
    }
  }
}