fpc/tests/webtbs/tw30572.pp
Jonas Maebe 5ffd06392d * don't optimize "x:=f(x)" whereby the function result of f() is passed
by reference in case x is a temp (mantis #30572)

git-svn-id: trunk@34445 -
2016-09-07 19:37:35 +00:00

28 lines
442 B
ObjectPascal

{$mode objfpc}
{$h+}
{$inline on}
var
s: String;
function TestWinCPToUTF8(const s: string): string;
begin
if pointer(s)=pointer(result) then
halt(1);
Result := s; // Result is now invalid
SetCodePage(RawByteString(Result), CP_ACP, False);
end;
function Test: string; inline;
var
s: String;
begin
s := 'test';
result:=s+'a';
Result := TestWinCPToUTF8(Result);
end;
begin
s := Test;
end.