comparison: js/src/jit-test/tests/jaeger/strictModeSetUndefinedVar.js
js/src/jit-test/tests/jaeger/strictModeSetUndefinedVar.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 // |jit-test| error: ReferenceError; |
|
2 |
|
3 function f() { |
|
4 "use strict"; |
|
5 foo = 1; |
|
6 } |
|
7 |
|
8 f(); |