fpc/tests/test/tclass13a.pp
Jonas Maebe 8e788c6fa5 * further fixes for parsing declarations involving nested types that are
declared inside the the current structdef hierarchy: properly deal with
    multiple types of the same name nested into each other, by keeping track
    of at which point in the hierarchy we found the first type (and afterwards
    continuing from there, instead of from any point in the hierarchy where
    a type with this name can be found)

git-svn-id: trunk@17126 -
2011-03-12 23:54:12 +00:00

18 lines
170 B
ObjectPascal

{ %norun }
{$mode delphi}
type
tc = class
type
tnest = class
end;
end;
td = class(tc)
type
tnest = class(tc.tnest)
end;
end;
begin
end.