mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-27 07:14:20 +00:00
Branches: main
Delete some deprecated modules from the standard library.
library/graph.m:
library/group.m:
Delete the contents of these files.
library/library.m:
Do not include the above modules in the library.
tests/invalid/missing_interface_import3.m:
tests/invalid/missing_interface_import2.{m,err_exp}:
Replace a use of the group module in this test.
NEWS:
Announce the above, plus the recent removal of the relation
module.
17 lines
287 B
Mathematica
17 lines
287 B
Mathematica
:- module missing_interface_import2.
|
|
|
|
:- import_module io.
|
|
:- import_module eqvclass.
|
|
:- import_module missing_interface_import3.
|
|
|
|
:- interface.
|
|
|
|
:- pred write_key(partition_id::in, io__state::di, io__state::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
write_key(_) -->
|
|
io__write_string("ok\n").
|
|
|
|
|