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

16 lines
673 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/trailingCommaInHeterogenousArrayLiteral1.ts (2 errors) ====
class arrTest {
test(arg1: number[]) { }
callTest() {
// these two should give the same error
this.test([1, 2, "hi", 5, ]);
~~~~~~~~~~~~~~~~~
2014-07-25 04:39:50 +02:00
!!! Argument of type '{}[]' is not assignable to parameter of type 'number[]'.
!!! Type '{}' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
this.test([1, 2, "hi", 5]);
~~~~~~~~~~~~~~~
2014-07-25 04:39:50 +02:00
!!! Argument of type '{}[]' is not assignable to parameter of type 'number[]'.
!!! Type '{}' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
}
}