This commit is contained in:
peter 2005-03-10 00:14:43 +00:00
parent 55c709f644
commit 5089bc001f

10
tests/webtbf/tw3680.pp Normal file
View File

@ -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.