summaryrefslogblamecommitdiff
path: root/test/files/neg/nonlocal-warning.scala
blob: cc98bd631a7a74bffeec343bf1c35227ab0c932d (plain) (tree)
1
2
3
4
5
6
7






                                   
class Foo {
  def foo(l: List[Int]): Int = {
    try l foreach { _ => return 5 }
    catch { case x => 11 }
    22
  }
}