* pchar=char failure

This commit is contained in:
peter 2003-01-02 20:37:38 +00:00
parent 40bcae707d
commit 763eb6bafa

12
tests/tbs/tb0446.pp Normal file
View File

@ -0,0 +1,12 @@
var
a : array[0..9] of char;
pc : pchar;
begin
a:='1';
pc:=@a;
if pc='1' then
writeln('OK')
else
halt(1);
end.