mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 16:19:35 +02:00
16 lines
131 B
ObjectPascal
Executable File
16 lines
131 B
ObjectPascal
Executable File
{ OPT=-gw }
|
|
|
|
unit uvmt;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
type
|
|
a_tclass = class (tobject)
|
|
x : integer;
|
|
end;
|
|
implementation
|
|
|
|
end.
|