+ $opt info

+ built-in test for equality of expected and actual result
This commit is contained in:
Jonas Maebe 2000-04-10 13:21:48 +00:00
parent c3ac962fd5
commit 37339f70a6

View File

@ -1,3 +1,5 @@
{ $OPT=-OG2p3}
procedure t;
var
a: array[1..10,1..10] of string[31];
@ -13,7 +15,11 @@ begin
asm
end;
a[i,j] := a[i,j] + c;
writeln(a[i,j]);
if a[i,j] <> '1234567890' then
begin
writeln('error!');
halt(1)
end;
end;
begin