fpc/tests/tbs/tb0257.pp
2000-11-30 22:38:14 +00:00

18 lines
238 B
ObjectPascal

{ Old file: tbs0297.pp }
{ calling of interrupt procedure allowed but wrong code generated OK 0.99.13 (PM) }
program test_int;
{$ifdef go32v2}
uses
dpmiexcp;
{$endif go32v2}
procedure int;interrupt;
begin
end;
begin
int;
end.