fpc/tests/test/tclass13b.pp
Jonas Maebe ac283bb237 * when checking whether the current class definition finalises an existing
forward-declared class, only search the current symtable rather than the
    entire symtable stack (to prevent finding types in e.g. nested types)

git-svn-id: trunk@17128 -
2011-03-13 13:34:49 +00:00

24 lines
251 B
ObjectPascal

{ %norun }
{$mode delphi}
type
tc = class
type
tforward = class;
tnested = class
type
tforward = class;
tforward = class
end;
end;
tforward = class
end;
end;
begin
end.