fpc/tests/webtbf/tw1782.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

40 lines
815 B
ObjectPascal

{ %fail }
{ Source provided for Free Pascal Bug Report 1782 }
{ Submitted by "Aleksey V. Vaneev" on 2002-01-27 }
{ e-mail: picoder@sbis.komi.ru }
{$mode objfpc}
type
PStruct = ^TStruct;
TStruct =
packed record
i: LongInt;
end;
TCls = class
protected
Fv: array [1..10] of TStruct;
function getv (i: LongInt): TStruct;
public
property v [i: LongInt]: TStruct read getv;
end;
function TCls.getv (i: LongInt): TStruct;
begin
Result := Fv [i];
end;
var
sp: PStruct;
o: TCls;
begin
o := TCls.create;
{ Should fail with 'variable expected' }
sp := @o.v [10];
end.