mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 06:19:32 +02:00
13 lines
213 B
ObjectPascal
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.
|