mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:27:55 +02:00
16 lines
213 B
ObjectPascal
16 lines
213 B
ObjectPascal
{ %fail }
|
|
program tpointermath2;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE DELPHI}
|
|
{$ENDIF}
|
|
type
|
|
PByte = ^Byte;
|
|
var
|
|
PB: PByte;
|
|
begin
|
|
// Pointer math must fail in delphi mode without pointermath directive
|
|
PB := PB + 1;
|
|
end.
|
|
|