fpc/tests/test/tcase48_2.pp
florian cf215d5097 o patch by Michael V. Denisenko to handle case <string> of (see also #13700)
+ compiler implementation
  + tests

git-svn-id: trunk@13642 -
2009-09-03 20:21:30 +00:00

19 lines
188 B
ObjectPascal

program test_program;
uses
tcase48;
var
i : integer;
begin
test_proc(i);
if (i <> 1) then
begin
writeln('FAIL');
halt(1);
end
else
writeln('OK');
end.