Files
mercury/tests/hard_coded/string_suffix_bug.m
David Overton 28cdfbf955 Add a test case which I forgot to add with a previous change.
Estimated hours taken: 0.1

tests/hard_coded/Mmakefile:
tests/hard_coded/string_suffix_bug.exp:
tests/hard_coded/string_suffix_bug.m:
	Add a test case which I forgot to add with a previous change.
2003-07-16 06:54:34 +00:00

17 lines
281 B
Mathematica

:- module string_suffix_bug.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
:- import_module string.
main -->
( { string__suffix("testing string__suffix", "suffix") } ->
io__write_string("yes\n")
;
io__write_string("no\n")
).