TypeScript Version: Version 2.3.0-dev.20170217
Code
// A *self-contained* demonstration of the problem follows...
// "noImplicitAny": true,
const myFunc = ( _ , index: number) => { //[ts] Parameter '_' implicitly has an 'any' type.
return `${index}`;
}
Expected behavior:
skip errors "noImplicitAny": when using _
Actual behavior:
[ts] Parameter '_' implicitly has an 'any' type.