deno/tests/specs/coverage/unterminated_ignore_comment_warning/main.ts

6 lines
109 B
TypeScript

export function foo() {
// deno-coverage-ignore-start
if (1 > 2) {
console.log("That's odd!");
}
}