fpc/bugs/bug0097.pp
1998-03-25 11:26:49 +00:00

20 lines
254 B
ObjectPascal

{
This compiles fine with FPC, but not with Bp7 see 2 comments
}
type
t=object
s : string { No ; needed ? }
procedure p;
end;
procedure t.p;
var
s : longint; { Not allowed with BP7 }
begin
end;
begin
end.