ericmckean / traceur-compiler

Automatically exported from code.google.com/p/traceur-compiler
Apache License 2.0
0 stars 0 forks source link

Need syntax error for duplicate lexical variable declarations #213

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
    let x;
    let x;

and

    const x = 5;
    const x = 10;

and

    let x;
    const x = 5;

should all give syntax errors.

Original issue reported on code.google.com by dome...@domenicdenicola.com on 4 Mar 2013 at 6:13