fpc/tests/webtbs/tw25685.pp
florian c41d043ac8 + test for last commit
git-svn-id: trunk@26693 -
2014-02-06 19:51:43 +00:00

19 lines
278 B
ObjectPascal

{ %OPT=-O2 }
program Project1;
procedure Foo(StartPos, EndPos: Cardinal);
var
s:string;
begin
if (Cardinal((@s[1])^) >= StartPos) and (Cardinal((@s[1])^) <= EndPos) then
writeln;
end;
var
S: string;
begin
foo(1,2);
writeln(PByte(@S[1])^ = PByte(@S[1])^ );
end.