fpc/tests/webtbs/tw6543.pp
Jonas Maebe f4b2ee2904 + test which already works
git-svn-id: trunk@7360 -
2007-05-16 14:44:38 +00:00

21 lines
250 B
ObjectPascal

{$ifdef fpc}
{$mode objfpc}
{$endif}
program p;
type
c = class
a: array[boolean] of byte;
property f: byte read a[false] write a[false];
end;
var
o: c;
begin
o := c.Create;
o.f := 1;
if (o.a[false] <> 1) then
halt(1);
end.