fpc/tests/webtbf/tw8398.pp
florian da23643459 * new test to avoid regression
git-svn-id: trunk@6653 -
2007-02-25 19:04:09 +00:00

22 lines
193 B
ObjectPascal

{ %fail }
unit tw8398;
{ found error by s0t // SotSoft 07-02-24 }
interface
type
a = record
c: char;
end;
implementation
procedure x;
begin
with a do
with b do
end;
begin
end.