mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +03:00
9797a79b53
* Change the printing of namespaced operator to show parenthesis around operators * Update warning when conflicting fixities are found * Do not warn about redundant but compatible fixities
9 lines
83 B
Idris
9 lines
83 B
Idris
module NonConflict1
|
|
|
|
infixr 5 &&&
|
|
|
|
export
|
|
(&&&) : Nat -> Nat -> Nat
|
|
(&&&) = minus
|
|
|