strictModeSetUndefinedVar.js (92B)
1 // |jit-test| error: ReferenceError; 2 3 function f() { 4 "use strict"; 5 foo = 1; 6 } 7 8 f();