mirror of
https://github.com/anoma/juvix.git
synced 2024-12-11 08:25:46 +03:00
12 lines
116 B
Plaintext
12 lines
116 B
Plaintext
|
module MultipleCompileRuleSameBackend;
|
||
|
|
||
|
|
||
|
axiom A : Type;
|
||
|
|
||
|
compile A {
|
||
|
ghc -> "Bool";
|
||
|
ghc -> "Integer";
|
||
|
};
|
||
|
|
||
|
end;
|