good.ts 86 B

1234
  1. function foo2(x: number | string): void;
  2. function foo2(x: any): any {
  3. return x;
  4. }