Files
mercury/tests/warnings/state_vars_test.m
Zoltan Somogyi c03b11ca48 Update the style of more test cases.
And updated expected outputs for changed line numbers.
2021-07-27 19:29:21 +10:00

22 lines
429 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module state_vars_test.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
main(!IO).
:- pred p(int::out) is det.
p(!:X) :-
% Warning about reference to "uninitialized" !.X.
!.X = 1.