fpc/tests/webtbf/tw3680.pp
2005-03-10 00:14:43 +00:00

11 lines
129 B
ObjectPascal

{ %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.