summaryrefslogblamecommitdiff
path: root/test/files/run/retclosure.scala
blob: d354cb35867b338af717af1f9093948eb22c90d1 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                           
                  




                                    
                                                                    



                         



                                                        





                                 
/* Test return expressions inside closures.
 *
 * See bug#834  */

object Test {
  def response: String = {
    def check: Option[String] = {
      val closure: String=>Nothing =
        p => return Some("some problem") // should return from check

      closure("whatever")
    }

    check match {
        case Some(problem) => "check failed: " + problem
        case None => "ok"
    }
  }

  def main(args: Array[String]) {
    Console.println(response)
  }
}