mirror of
https://github.com/anoma/juvix.git
synced 2025-01-08 16:51:53 +03:00
ef1148beaa
Precedence inconsistency was not always correctly detected.
6 lines
207 B
Plaintext
6 lines
207 B
Plaintext
module PrecedenceInconsistency;
|
|
|
|
syntax fixity f1 := binary {assoc := left};
|
|
syntax fixity f2 := binary {assoc := left; same := f1};
|
|
syntax fixity f3 := binary {assoc := left; above := [f1]; below := [f2]};
|