mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00
13 lines
184 B
ObjectPascal
13 lines
184 B
ObjectPascal
{ Old file: tbs0297.pp }
|
|
{ calling of interrupt procedure allowed but wrong code generated OK 0.99.13 (PM) }
|
|
|
|
program test_int;
|
|
|
|
procedure int;interrupt;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
int;
|
|
end.
|