aboutsummaryrefslogtreecommitdiff
path: root/check/type/fail-if.p
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-08-29 09:46:20 -0400
committerTucker Evans <tuckerevans24@gmail.com>2019-08-29 09:46:20 -0400
commitec98dd863237aa4a1853e0efb589f2da597c5640 (patch)
treeb5f129020b9dcb0f1083639725ca920ec3b5c54e /check/type/fail-if.p
parentdd07055aca1c45d147d773350e0c21930822a74f (diff)
Add more test files
Diffstat (limited to 'check/type/fail-if.p')
-rw-r--r--check/type/fail-if.p9
1 files changed, 9 insertions, 0 deletions
diff --git a/check/type/fail-if.p b/check/type/fail-if.p
new file mode 100644
index 0000000..17126d6
--- /dev/null
+++ b/check/type/fail-if.p
@@ -0,0 +1,9 @@
+program main ( input, output );
+ var a: integer;
+begin
+ if (1)
+ then
+ a:= 1
+ else
+ a:= 0
+end.