summaryrefslogtreecommitdiff
path: root/tests/specs/compile/patch/add/mod.ts
blob: 7e841b3bf295039279ded4ba35cd8b6c4e5057c2 (plain)
1
2
3
export function add(a: number, b: number): number {
  return (a + b) * 2; // it adds wrong
}