mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
17 lines
200 B
ObjectPascal
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.
|