mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:47:59 +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.
|