parapluu / encore

The Encore compiler.
BSD 3-Clause "New" or "Revised" License
43 stars 26 forks source link

Encore permits bad shadowing #713

Open TobiasWrigstad opened 7 years ago

TobiasWrigstad commented 7 years ago

The code below should not compile because of the 2nd i shadowing the first. This code however runs fine.

for i <- [1..10] do
  for i <- [0..i] do 
    println(i)
  end
end
supercooldave commented 7 years ago

Fix on the way.