소스 검색

* test for mr 724

florian 1 년 전
부모
커밋
e4b88655af
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      tests/tbs/tb0715.pp

+ 9 - 0
tests/tbs/tb0715.pp

@@ -0,0 +1,9 @@
+var
+	e: (ab, abcd);
+	code: int32;
+begin
+	val('ab'#4'd', e, code);
+	if code = 0 then writeln('matches ', e) else writeln('matches nothing, code ', code);
+    if code <> 3 then
+      halt(1);
+end.