fpc/tests/webtbf/tw18620.pp
svenbarth d12b198c7f Rebase to revision 16888
git-svn-id: branches/svenbarth/classhelpers@16891 -
2011-02-07 20:30:48 +00:00

14 lines
278 B
ObjectPascal

{ %fail }
program tw18620;
{$mode delphi}
type
{ in mode delphi compiler should not create a forward definistion for ^_TFoo for later resolve
instead it must search _TFoo amoung already defined symbols }
TFoo = record
Foo: ^_TFoo;
end;
_TFoo = TFoo;
begin
end.