summaryrefslogtreecommitdiff
path: root/ecomp-c/test1.e
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2020-02-23 12:56:26 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2020-02-23 12:56:26 +0100
commit5d98dd585d0f3357df215230ec997880c15e8a6f (patch)
tree9eb5a0e3cbaff142bcd7b1e6101c39f77e5356d9 /ecomp-c/test1.e
parent82ef3f613cb2f4ceb138cc8284d04fbc72ee682e (diff)
downloadcompilertests-5d98dd585d0f3357df215230ec997880c15e8a6f.tar.gz
compilertests-5d98dd585d0f3357df215230ec997880c15e8a6f.tar.bz2
handling assignment of variables
Diffstat (limited to 'ecomp-c/test1.e')
-rw-r--r--ecomp-c/test1.e3
1 files changed, 2 insertions, 1 deletions
diff --git a/ecomp-c/test1.e b/ecomp-c/test1.e
index 0286b94..6a2db57 100644
--- a/ecomp-c/test1.e
+++ b/ecomp-c/test1.e
@@ -18,5 +18,6 @@ var
begin
a := 1;
b := 7;
- c := integer;
+ c := N;
+ a := b;
end