summaryrefslogtreecommitdiff
path: root/tests/webtbf/tw3253.pp
diff options
context:
space:
mode:
authorfpc <fpc@3ad0048d-3df7-0310-abae-a5850022a9f2>2005-05-16 18:37:41 +0000
committerfpc <fpc@3ad0048d-3df7-0310-abae-a5850022a9f2>2005-05-16 18:37:41 +0000
commitf206a9c2b1ae1d8727ca27a96d448b61fdb4c766 (patch)
treef28256ff9964c1fc7c0f7fb00891268a117b745d /tests/webtbf/tw3253.pp
downloadfpc-f206a9c2b1ae1d8727ca27a96d448b61fdb4c766.tar.gz
initial import
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@1 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'tests/webtbf/tw3253.pp')
-rw-r--r--tests/webtbf/tw3253.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/webtbf/tw3253.pp b/tests/webtbf/tw3253.pp
new file mode 100644
index 0000000000..f878ebdb96
--- /dev/null
+++ b/tests/webtbf/tw3253.pp
@@ -0,0 +1,16 @@
+{ %fail }
+
+{ Source provided for Free Pascal Bug Report 3253 }
+{ Submitted by "marco" on 2004-08-16 }
+{ e-mail: }
+PROGRAM TEST;
+ {$R+}
+ {$Q+}
+ CONST Range = 10;
+ { The next line is not possible, the ( expects an enumeration declation }
+ TYPE Sometype = ((-1)*(Range-1))..(Range-1);
+ VAR Somevar: SOMETYPE;
+ BEGIN
+ Somevar := -9;
+ WriteLn(Somevar);
+ END.