florian il y a 21 ans
Parent
commit
dde59bdf16
1 fichiers modifiés avec 12 ajouts et 0 suppressions
  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.