fpc/tests/webtbf/tw31936.pp

13 lines
163 B
ObjectPascal

{ %fail }
{ %opt=-Sew }
var
I : longint;
Somestring : string;
begin
Somestring:='asdf';
I := 1;
While Not (Somestring[I] in ['#'..#0]) Do Inc(I);
end.