aboutsummaryrefslogtreecommitdiff
path: root/tests/run/retclosure.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/retclosure.scala')
-rw-r--r--tests/run/retclosure.scala23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/run/retclosure.scala b/tests/run/retclosure.scala
new file mode 100644
index 000000000..0f4b823c3
--- /dev/null
+++ b/tests/run/retclosure.scala
@@ -0,0 +1,23 @@
+/* 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]): Unit = {
+ Console.println(response)
+ }
+}