summaryrefslogtreecommitdiff
path: root/tests/webtbf
diff options
context:
space:
mode:
authorflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2020-01-11 21:15:19 +0000
committerflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2020-01-11 21:15:19 +0000
commit433cb34e8e4d2eeb8d05777135b1e749e8647cee (patch)
tree0c5d228b1a8bab50f9c09cb62a69cb1f3a70c0fe /tests/webtbf
parenta5378553ea93b4d3824a4db188251b568bd88838 (diff)
downloadfpc-433cb34e8e4d2eeb8d05777135b1e749e8647cee.tar.gz
* fix for #36554
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@43913 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'tests/webtbf')
-rw-r--r--tests/webtbf/tw36554.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/webtbf/tw36554.pp b/tests/webtbf/tw36554.pp
new file mode 100644
index 0000000000..3113f4186d
--- /dev/null
+++ b/tests/webtbf/tw36554.pp
@@ -0,0 +1,15 @@
+{ %fail }
+type oWord = record q1,q2 : qword; end;
+
+procedure megadoodoo;
+var a : oWord;
+
+begin
+ for a:=0 to 3 do
+ begin
+ end;
+end;
+
+
+begin
+end.