peter 20 years ago
parent
commit
5089bc001f
1 changed files with 10 additions and 0 deletions
  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.