Browse Source

* more precise test as suggested here: https://gitlab.com/freepascal.org/fpc/source/-/commit/876ae561585c22b9809764710f11b9a88da935ee#note_921869640

florian 3 years ago
parent
commit
3fac399683
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/webtbs/tw39354.pp

+ 1 - 1
tests/webtbs/tw39354.pp

@@ -15,7 +15,7 @@ begin
     writeln(Pair.Key);
     writeln(Pair.Key);
     inc(count);
     inc(count);
   end;
   end;
-  if count=0 then
+  if count<>2 then
     halt(1);
     halt(1);
   Map.Free;
   Map.Free;
 end. 
 end.