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

8 lines
227 B
JavaScript

/*global w, x:true*/
/* global y*/ // not a proper JSLint global declaration, but we (and JSHint) accept it anyway
/*global: z*/ // also not a proper global declaration
w; // OK
x; // OK
y; // not OK
z; // not OK
var x, y, z;