mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
35 lines
319 B
ObjectPascal
35 lines
319 B
ObjectPascal
unit uw32108;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
function getTFooF: Integer;
|
|
|
|
implementation
|
|
|
|
type
|
|
|
|
{ TFoo }
|
|
|
|
TFoo = class
|
|
class var f: integer;
|
|
class constructor Create;
|
|
end;
|
|
|
|
{ TFoo }
|
|
|
|
class constructor TFoo.Create;
|
|
begin
|
|
f := 1;
|
|
end;
|
|
|
|
function getTFooF: Integer;
|
|
begin
|
|
Result := TFoo.f;
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|