fpc/tests/webtbs/tw10493.pp
2008-05-02 21:15:10 +00:00

17 lines
200 B
ObjectPascal

{$mode objfpc}
program test;
type
TStringArray = array of String;
TBug = class
private
fSA: TStringArray;
published
property SA: TStringArray read fSA write fSA;
end;
begin
end.