mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
21 lines
195 B
ObjectPascal
21 lines
195 B
ObjectPascal
{ OPT=-gw }
|
|
|
|
unit uvmt_a;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
{$ifndef VAR_ONLY}
|
|
type
|
|
tclass = class (tobject)
|
|
x : integer;
|
|
end;
|
|
{$endif ndef VAR_ONLY}
|
|
var
|
|
int : longint;
|
|
|
|
implementation
|
|
|
|
end.
|