TypeScript/tests/cases/compiler/heterogeneousArrayAndOverloads.ts
2014-07-12 17:30:19 -07:00

11 lines
256 B
TypeScript

class arrTest {
test(arg1: number[]);
test(arg1: string[]);
test(arg1: any[]) { }
callTest() {
this.test([1, 2, 3, 5]);
this.test(["hi"]);
this.test([]);
this.test([1, 2, "hi", 5]); // Error
}
}