Idris2/tests/prelude/reg001/fixity.idr
Marc Petit-Huguenin bc21299c51
Restore Bool operators precedence
(&&) traditionally has higher precedence than (||).

Note that this commit requires to bootstrap again.
2020-07-18 05:49:35 -07:00

3 lines
53 B
Idris

boolean : a && b || c = (a && b) || c
boolean = Refl