fpc/tests/webtbs/tw28454.pp
Jonas Maebe e06181749c * guarantee the order of parameter pushes again after r31201 on platforms
that don't use a fixed stack (mantis #28454)
   o moved the code to finalise managed out parameters from ncgcal to ncal,
     and add it to the init code of the call node (so it's evaluated before
     any parameters are processed, ensuring that mantis #28390 stays fixed)

git-svn-id: trunk@31328 -
2015-08-16 12:47:09 +00:00

38 lines
606 B
ObjectPascal

{$mode objfpc}
type
tc = class(tinterfacedobject)
l: longint;
constructor create(f: longint);
end;
constructor tc.create(f: longint);
begin
l:=f;
end;
procedure test(out i1,i2: iinterface; k3,k4,k5,k6,k7,k8: longint; out i9,i10: iinterface); stdcall;
begin
i1:=tc.create(1);
i2:=tc.create(2);
i9:=tc.create(9);
i10:=tc.create(10);
end;
var
i1,i2,i9,i10: iinterface;
begin
test(i1,i2,3,4,5,6,7,8,i9,i10);
if (i1 as tc).l<>1 then
halt(1);
if (i2 as tc).l<>2 then
halt(2);
if (i9 as tc).l<>9 then
halt(3);
if (i10 as tc).l<>10 then
halt(4);
end.