2015-01-04 19:40:09 +11:00

6 lines
163 B
JavaScript

// Options: --array-comprehension --free-variable-checker
// Error: :5:1: notDefined is not defined
var array = [for (notDefined of [0]) notDefined];
notDefined;