* small extension of the test for completeness sake

git-svn-id: trunk@38369 -
This commit is contained in:
svenbarth 2018-02-27 21:45:50 +00:00
parent 0e5a598b6a
commit 332b078c22

View File

@ -107,6 +107,12 @@ begin
PrintArray(t);
CheckArray(t, [1, 3, 5]);
t := Nil;
t2 := Nil;
Insert(t2, t, 0);
PrintArray(t);
CheckArray(t, []);
t := Nil;
Insert([], t, 0);
PrintArray(t);