mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
12 lines
199 B
ObjectPascal
12 lines
199 B
ObjectPascal
program Project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
var
|
|
pTyped: PInteger;
|
|
p: Pointer;
|
|
begin
|
|
p := nil;
|
|
pTyped := @(PByte(p)+1)^; //project1.lpr(21,23) Fatal: Syntax error, ")" expected but "+" found
|
|
end.
|