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() => {} => {} }