TypeScript/tests/baselines/reference/restElementWithNullInitializer.errors.txt
Anders Hejlsberg 95b3d6be58 Adding test
2015-02-21 12:41:20 -08:00

8 lines
No EOL
353 B
Text

tests/cases/conformance/es6/destructuring/restElementWithNullInitializer.ts(1,14): error TS2461: Type 'null' is not an array type.
==== tests/cases/conformance/es6/destructuring/restElementWithNullInitializer.ts (1 errors) ====
function foo([...r] = null) { }
~~~~~~
!!! error TS2461: Type 'null' is not an array type.