fpc/tests/webtbs/tw30205.pp

13 lines
158 B
ObjectPascal

{ %TARGET=win32 }
program tw30205;
{$calling cdecl}
procedure ietest( var f: ansistring );
var
x: ansistring;
begin
x :='1234';
f := x;
end;
begin
end.