mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 00:08:16 +02:00
21 lines
250 B
ObjectPascal
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.
|