mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 23:09:40 +02:00
22 lines
198 B
ObjectPascal
22 lines
198 B
ObjectPascal
{ OPT=-gw }
|
|
|
|
unit uvmt;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
{$ifndef VAR_ONLY}
|
|
type
|
|
a_tclass = class (tobject)
|
|
x : integer;
|
|
end;
|
|
{$endif ndef VAR_ONLY}
|
|
|
|
var
|
|
a_int : longint;
|
|
|
|
implementation
|
|
|
|
end.
|