aboutsummaryrefslogtreecommitdiff
path: root/examples/opt_group.fwd
blob: e520c703ff112ac6989cc1130ab0c1e3f1618507 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
do_something(() a | () b)
{
	a();

	/* should fail, since either a or b should be called, but not both */
	b();
}

main()
{
	do_something()
	=> {}
	=> {}
}