peter 20 年之前
父节点
当前提交
5089bc001f
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      tests/webtbf/tw3680.pp

+ 10 - 0
tests/webtbf/tw3680.pp

@@ -0,0 +1,10 @@
+{ %fail }
+
+function c(x:char):char;
+begin
+c:=(char(succ(ord(x))));
+end;
+
+begin
+if not c('y') in ['a','b'] then writeln(99);
+end.