oxc/crates/oxc_isolated_declarations/tests/fixtures/function-overloads.ts
overlookmotel dc924892cc test: add trailing line breaks to conformance fixtures (#5541)
Continuation of #5537. Ensure all conformance fixture files have a trailing line break.
2024-09-06 12:55:17 +00:00

7 lines
159 B
TypeScript

function a(a: number): number;
function a(a: string): string;
function a(a: any): any {}
function b(a: number): number {};
function b(a: string): string {};