fpc/tests/webtbf/tw22252.pp
2022-01-09 12:29:08 +01:00

30 lines
273 B
ObjectPascal

{ %FAIL }
unit tw22252;
{$mode objfpc}{$H+}
interface
{uses
Classes, SysUtils;}
type
TFoo = class
strict private
class var FProp: Integer;
end;
implementation
procedure Test;
var
f: TFoo;
begin
f := TFoo.Create;
f.FProp := 10;
f.Free;
end;
end.