mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 08:27:03 +03:00
4c5fee3e95
* Compute name dependency graph and filter unreachable declarations * bugfix: recurse into type signatures * positive tests * make ormolu happy * get starting nodes from ExportInfo * make ormolu happy * cosmetic refactoring of DependencyInfo * fix tests & style
14 lines
139 B
Plaintext
14 lines
139 B
Plaintext
module N;
|
|
|
|
open import M;
|
|
open import Stdlib.Prelude;
|
|
|
|
test : {A : Type} -> A -> A;
|
|
test x := x;
|
|
|
|
inductive Unit {
|
|
unit : Unit;
|
|
};
|
|
|
|
end;
|