florian hace 21 años
padre
commit
dde59bdf16
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. 12 0
      tests/webtbf/tw3126.pp

+ 12 - 0
tests/webtbf/tw3126.pp

@@ -0,0 +1,12 @@
+{ Source provided for Free Pascal Bug Report 3126 }
+{ Submitted by "Christian Iversen" on  2004-05-30 }
+{ e-mail: [email protected] }
+Program test;
+
+Var
+  P : PChar;
+Begin
+  Case P^ Of
+    'A'-'Z' : ;
+  End;
+End.