소스 검색

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

florian 3 년 전
부모
커밋
3fac399683
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/webtbs/tw39354.pp

+ 1 - 1
tests/webtbs/tw39354.pp

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