fpc/tests/webtbf/tw10425e.pp
Jonas Maebe f8cb3fbfef + old tests I forgot to commit
git-svn-id: trunk@21429 -
2012-05-29 09:01:55 +00:00

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.