The following example fails to compile currently:
let a = 3;
for i in 0..a {
let b = i;
}
with
<anon>:4:9: 4:12 error: expected identifier, found keyword `let`
<anon>:4 let b = i;
^~~
<anon>:4:13: 4:14 error: expected `:`, found `b`
<anon>:4 let b = i;