mirror of
https://github.com/anoma/juvix.git
synced 2024-12-03 09:41:10 +03:00
21d5034e60
In this PR, we ran the Juvix formatter so that we can now freely run `make format`, `make check`, or `make pre-commit` without any unexpected file changes. This goes after: - https://github.com/anoma/juvix/pull/2486
11 lines
137 B
Plaintext
11 lines
137 B
Plaintext
module NoInstance;
|
|
|
|
type Unit := unit;
|
|
|
|
type Box A := box A;
|
|
|
|
trait
|
|
type T A := mkT {pp : A → A};
|
|
|
|
main : Box Unit := T.pp (box unit);
|