aboutsummaryrefslogtreecommitdiff
path: root/testsuite/runnable/for_by.elna
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/runnable/for_by.elna')
-rw-r--r--testsuite/runnable/for_by.elna9
1 files changed, 0 insertions, 9 deletions
diff --git a/testsuite/runnable/for_by.elna b/testsuite/runnable/for_by.elna
deleted file mode 100644
index b219dc6..0000000
--- a/testsuite/runnable/for_by.elna
+++ /dev/null
@@ -1,9 +0,0 @@
-var
- actual: [4]Word := [4]Word{}
-
-begin
- for i := 1u to 4u by 2u do
- actual[i] := i
- end;
- assert(actual = [4]Word{ 1u, 0u, 3u, 0u })
-end.