pascalabcnet/TestSuite/units/u_alwaysrestore.pas

19 lines
191 B
ObjectPascal
Raw Permalink Normal View History

2024-01-04 21:42:14 +03:00
unit u_alwaysrestore;
interface
[PCUAlwaysRestore]
function myfunc: integer;
type
[PCUAlwaysRestore]
MyClass = class
end;
implementation
function myfunc: integer;
begin
end;
end.