bad.ts 109 B

12345
  1. function foo1(x: number): void;
  2. function foo1(x: string): void;
  3. function foo1(x: any): any {
  4. return x;
  5. }