catala/tests/test_variable_state/bad/no_cross_exceptions.catala_en

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
288 B
Plaintext
Raw Normal View History

2022-03-07 13:55:26 +03:00
## Test
```catala
declaration scope A:
output foo content integer
state bar
state baz
scope A:
label thing definition foo state bar equals 2
definition foo state baz equals foo + 1
exception thing definition foo state baz under condition true consequence equals 3
```