Files
2018-08-02 17:53:23 +01:00

7 lines
55 B
JavaScript

// NOT OK
var a, b, a = 42;
// OK
var x;
var y;
var x;