6 lines
163 B
JavaScript
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;
|