summaryrefslogtreecommitdiff
path: root/ecomp-c/tests/duplicate_variable.e
blob: ef8536a26087fc3eadbe40a6350830a3fc3127d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
module duplicate_variable;

var
	a : integer;
	a : integer; // must croak about redefining a const as a variable
	
begin
	a := 1;
	b := 7;
	c := 8;
end