summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbf/tw3680.pp
blob: 1dec51e6a2971e5e1073fd07493e5b435adfc4b4 (plain)
1
2
3
4
5
6
7
8
9
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.