TypeScript/tests/baselines/reference/heterogeneousArrayAndOverloads.errors.txt

14 lines
485 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/heterogeneousArrayAndOverloads.ts (1 errors) ====
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
~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! Supplied parameters do not match any signature of call target.
}
}