Browse Source

no message

florian 21 years ago
parent
commit
dde59bdf16
1 changed files with 12 additions and 0 deletions
  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.