1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 01:52:11 +03:00
juvix/tests/positive/Foreign.mjuvix

28 lines
316 B
Plaintext
Raw Normal View History

2022-03-23 18:34:08 +03:00
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;