mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
+ test for last commit
git-svn-id: trunk@26693 -
This commit is contained in:
parent
3eaecd07a6
commit
c41d043ac8
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -13802,6 +13802,7 @@ tests/webtbs/tw2540.pp svneol=native#text/plain
|
||||
tests/webtbs/tw25551.pp svneol=native#text/plain
|
||||
tests/webtbs/tw25598.pp svneol=native#text/plain
|
||||
tests/webtbs/tw2561.pp svneol=native#text/plain
|
||||
tests/webtbs/tw25685.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw2588.pp svneol=native#text/plain
|
||||
tests/webtbs/tw2589.pp svneol=native#text/plain
|
||||
tests/webtbs/tw2594.pp svneol=native#text/plain
|
||||
|
18
tests/webtbs/tw25685.pp
Normal file
18
tests/webtbs/tw25685.pp
Normal file
@ -0,0 +1,18 @@
|
||||
{ %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.
|
Loading…
Reference in New Issue
Block a user