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