fpc/tests/webtbs/tw17521.pp
Jonas Maebe dd8fd7cd4a * fixed loading the vmt of TP-style objects when it's not at offset zero
(for virtual procvars of object, mantis #17521)

git-svn-id: trunk@16190 -
2010-10-20 12:00:15 +00:00

34 lines
459 B
ObjectPascal

{$mode objfpc}
{$h+}
type tx = object
a,b,c: longint; // remove these => no crash
constructor init;
function v: longint; virtual;
end;
px = ^tx;
constructor tx.init;
begin
end;
function tx.v: longint;
begin
v:=b;
end;
var t : function:longint of object;
p : px;
begin
new( p, init );
p^.a:=3;
p^.b:=4;
p^.c:=5;
p^.v; // ok
t := @p^.v; // sigsegv
if t()<>4 then
halt(1);
end.