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

15 lines
289 B
ObjectPascal

{
BP Error message is 'Pointer variable Expected'
}
type
tobj=object
l : longint;
constructor init;
end;
var
o : tobj;
begin
new(o); {This will create a internal error 9999}
new(o,init); {This will create a Segfault and Core Dump under linux}
end.