mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
17 lines
159 B
ObjectPascal
17 lines
159 B
ObjectPascal
{ %fail }
|
|
program Project1;
|
|
|
|
procedure foo2;
|
|
begin
|
|
end;
|
|
|
|
procedure foo(bar: integer);
|
|
var x: integer absolute foo(1);
|
|
begin
|
|
foo2;
|
|
end;
|
|
|
|
begin
|
|
foo(1);
|
|
end.
|