fpc/tests/tbs0171.pp
1999-01-21 16:11:01 +00:00

13 lines
213 B
ObjectPascal

type
pstring=^string;
const
drivestr:string='c:';
pdrivestr:pstring=pstring(@drivestr);
begin
if pdrivestr^<>'c:' then
begin
Writeln('Error in typecast of const');
Halt(1);
end;
end.