mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
10 lines
124 B
ObjectPascal
10 lines
124 B
ObjectPascal
{ %fail }
|
|
procedure p1(const b;l:longint);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
// Expected error: variable required
|
|
p1(1,sizeof(1));
|
|
end.
|