Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / jit-test / tests / jaeger / strictModeSetUndefinedVar.js
1 // |jit-test| error: ReferenceError;
2
3 function f() {
4     "use strict";
5     foo = 1;
6 }
7
8 f();