mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-31 20:02:40 +02:00
26 lines
219 B
ObjectPascal
26 lines
219 B
ObjectPascal
{ %norun }
|
|
{ %OPT=-Sen }
|
|
{ %fail }
|
|
|
|
unit tw5100a;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
type
|
|
|
|
{ TB }
|
|
|
|
TB = class
|
|
private
|
|
FT: string;
|
|
property T: string read FT write FT;
|
|
end;
|
|
|
|
implementation
|
|
|
|
|
|
end.
|
|
|