aboutsummaryrefslogtreecommitdiff
path: root/examples/opt_group.fwd
diff options
context:
space:
mode:
Diffstat (limited to 'examples/opt_group.fwd')
-rw-r--r--examples/opt_group.fwd14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/opt_group.fwd b/examples/opt_group.fwd
new file mode 100644
index 0000000..e520c70
--- /dev/null
+++ b/examples/opt_group.fwd
@@ -0,0 +1,14 @@
+do_something(() a | () b)
+{
+ a();
+
+ /* should fail, since either a or b should be called, but not both */
+ b();
+}
+
+main()
+{
+ do_something()
+ => {}
+ => {}
+}