Files
mercury/tests/valid_seq/intermod_char.m
2020-11-15 08:02:47 +11:00

25 lines
496 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
%
% Character constants in clause heads were doubly-escaped in .opt files.
%
:- module intermod_char.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
:- import_module intermod_char2.
main(!IO) :-
( if p('\r') then
true
else
true
).