mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
21 lines
187 B
ObjectPascal
21 lines
187 B
ObjectPascal
{ %fail }
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
|
|
unit tw10425e;
|
|
|
|
interface
|
|
|
|
type
|
|
tc = class
|
|
s: string[4];
|
|
property test: string[4] read s write s;
|
|
end;
|
|
|
|
implementation
|
|
|
|
|
|
end.
|