peter hace 27 años
padre
commit
fe8458eaa2
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  1. 11 0
      bugs/bug0130.pp

+ 11 - 0
bugs/bug0130.pp

@@ -0,0 +1,11 @@
+var
+  c : char;
+begin
+  c:=#91;
+  if c in [#64..#255] then
+   writeln('boe');
+  c:=#32;
+  if c in [#64..#255] then
+   writeln('boe');
+end.
+