fpc/tests/webtbs/tw26483.pp
svenbarth 5fd47d5e00 Fix for Mantis #26483. This regression was introduced by famous revision 27861 which introduced partial specializations (and thus that specializations can be part of local- and parasymtables as well).
symtable.pas, is_visible_for_object:
  * if the symtable belongs to a specialization we need to ignore any owning local- or parasymtable as well to determine which unit it belongs to

+ added test

git-svn-id: trunk@29482 -
2015-01-16 14:23:49 +00:00

25 lines
283 B
ObjectPascal

{ %NORUN }
program tw26483;
{$MODE DELPHI}
type
TA<T> = class
private
F: Integer;
end;
TB<T> = class
procedure Foo(A: TObject);
end;
procedure TB<T>.Foo(A: TObject);
begin
WriteLn(TA<T>(A).F); // p004.Error: identifier idents no member "F"
end;
begin
end.