fpc/tests/webtbs/tw21951.pp
Jonas Maebe 50d2fa7134 * after changing a modeswitch, only change related module/localswitches that
depend on the modeswitch that was just changed (so that e.g. changing
    the nested procvars setting has no effect on the state of $h+/$h-)
    (mantis #21951)

git-svn-id: trunk@21247 -
2012-05-06 14:56:49 +00:00

12 lines
140 B
ObjectPascal

{ %opt=-Mobjfpc -Sh }
{$modeswitch exceptions}
var
S: string;
begin
SetLength(S, 1000);
if (length(s)<>1000) then
halt(1);
end.