mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00
20 lines
199 B
ObjectPascal
20 lines
199 B
ObjectPascal
unit u_uvmta;
|
|
|
|
interface
|
|
|
|
const
|
|
u_test_count : longint = 0;
|
|
|
|
procedure a_int;
|
|
|
|
implementation
|
|
|
|
procedure a_int;
|
|
begin
|
|
Writeln('Procedure a_int in u_uvmta unit');
|
|
inc(u_test_count);
|
|
end;
|
|
|
|
|
|
end.
|