fpc/tests/tbs/tb0446.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

13 lines
150 B
ObjectPascal

var
a : array[0..9] of char;
pc : pchar;
begin
a:='1';
if a=nil then
halt(1);
pc:=@a;
if pc<>'1' then
halt(1);
writeln('OK')
end.