mirror of
https://github.com/anoma/juvix.git
synced 2024-12-13 19:49:20 +03:00
4d0267ebb9
This PR fixes a formatting issue that drops blank lines between axiom declarations. It goes after: - #1980 - Closes https://github.com/anoma/juvix/issues/1986
18 lines
207 B
Plaintext
18 lines
207 B
Plaintext
module A;
|
|
|
|
module M;
|
|
module N;
|
|
infix 3 t;
|
|
type T :=
|
|
| t : T;
|
|
end;
|
|
|
|
infixr 2 +;
|
|
axiom + : Type → Type → Type;
|
|
end;
|
|
|
|
import M;
|
|
|
|
f : M.N.T;
|
|
f (_ M.N.t _) := Type M.+ Type M.+ M.MType;
|