mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-30 20:40:20 +02:00
# revisions: 47122
git-svn-id: branches/fixes_3_2@47262 -
This commit is contained in:
parent
55401227f9
commit
f3b048007c
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -17701,6 +17701,7 @@ tests/webtbs/tw37228.pp svneol=native#text/plain
|
||||
tests/webtbs/tw37322.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw37323.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw37355.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw37382.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw37397.pp svneol=native#text/plain
|
||||
tests/webtbs/tw37415.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3742.pp svneol=native#text/plain
|
||||
|
@ -212,6 +212,7 @@ var i:SizeUInt;
|
||||
begin
|
||||
if Position <= Size then
|
||||
begin
|
||||
if Size > 1 then
|
||||
for i:=Position to Size-2 do
|
||||
begin
|
||||
Items[i]:=Items[i+1];
|
||||
|
20
tests/webtbs/tw37382.pp
Normal file
20
tests/webtbs/tw37382.pp
Normal file
@ -0,0 +1,20 @@
|
||||
{$mode objfpc}
|
||||
{$h+}
|
||||
|
||||
uses
|
||||
GDeque;
|
||||
|
||||
type
|
||||
TIntQueue = specialize TDeque<Integer>;
|
||||
|
||||
var
|
||||
Q: TIntQueue;
|
||||
|
||||
begin
|
||||
Q := TIntQueue.Create;
|
||||
Q.Insert(0, 12345);
|
||||
writeln('Size=',Q.Size);
|
||||
Q.Erase(0);
|
||||
writeln('Size=',Q.Size);
|
||||
Q.Free;
|
||||
end.
|
Loading…
Reference in New Issue
Block a user