mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:28:04 +02:00
15 lines
289 B
ObjectPascal
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.
|
|
|