1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-14 17:32:00 +03:00
juvix/tests/positive/Foreign.mjuvix
2022-03-23 15:34:08 +00:00

28 lines
316 B
Plaintext

module Foreign;
foreign ghc {};
foreign ghc { import Foo.Bar };
foreign agda { import Foo.Bar };
foreign ghc { import Foo.Bar
import Foo.Baz };
foreign ghc {
import Foo.Bar
import Foo.Baz };
foreign ghc {
import Foo.Bar
import Foo.Baz
};
foreign ghc {
import Foo.Bar
import Foo.Baz
};
end;