summaryrefslogtreecommitdiff
path: root/test/fixtures/v8-coverage/exit-1.js
blob: 5c35d0a2fc92f452797a55c34a906a500b9fedae (plain)
1
2
3
4
5
6
7
const a = 99;
if (true) {
  const b = 101;
} else {
  const c = 102;
}
process.exit(1);