Files
mercury/tests/valid_make_int/bug506.m
2023-09-18 21:13:14 +10:00

15 lines
334 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et
%---------------------------------------------------------------------------%
:- module bug506.
:- interface.
:- import_module bug506_helper_1.
:- func make_rule(int) = (rule).
:- implementation.
make_rule(N) = rule(N).