(n)
| 33 | // Attempt to inline strcit in non-strict. |
| 34 | |
| 35 | function strictToBeInlined(n) { |
| 36 | "use strict"; |
| 37 | global = "strict"; |
| 38 | if (n == MAX) { undefined_variable_strict = "value"; } |
| 39 | } |
| 40 | |
| 41 | function nonstrictCallStrict(n) { |
| 42 | strictToBeInlined(n); |