summaryrefslogtreecommitdiff
path: root/tests/specs/run/keep_comments_ts/main.ts
blob: ff58eff2e770fe78e988366888825ce7c19a018d (plain)
1
2
3
4
5
6
7
function test() {
  // this comment should be in output
  return 1 + 1;
}

// should include the comments because people rely on this behavior
console.log(test.toString());