aboutsummaryrefslogtreecommitdiff
path: root/examples/err.fwd
diff options
context:
space:
mode:
Diffstat (limited to 'examples/err.fwd')
-rw-r--r--examples/err.fwd17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/err.fwd b/examples/err.fwd
new file mode 100644
index 0000000..f2833e2
--- /dev/null
+++ b/examples/err.fwd
@@ -0,0 +1,17 @@
+do_something((auto, auto) ok);
+
+/* consume can fail */
+consume(auto a);
+
+main()
+{
+ do_something() => auto a, auto b;
+ consume(a);
+ /* try commenting out error handler or consume(b); */
+ !> e {
+ consume(b);
+ error "a failed"
+ }
+
+ consume(b);
+}