main
js 16 lines 219 Bytes
Raw
1 import {print} from 'shared-runtime';
2
3 function hoisting(cond) {
4 if (cond) {
5 const x = 1;
6 print(x);
7 }
8
9 const x = 2;
10 print(x);
11 }
12
13 export const FIXTURE_ENTRYPOINT = {
14 fn: hoisting,
15 params: [false],
16 };