TypeScript Version: nightly (2.1.0-dev.20161010)
Code
(compile with --noUnusedParameters)
function f(a, b) {
console.log(arguments)
}
Expected behavior:
No error
Actual behavior:
a.ts(1,12): error TS6133: 'a' is declared but never used.
a.ts(1,15): error TS6133: 'b' is declared but never used.
TypeScript Version: nightly (2.1.0-dev.20161010)
Code
(compile with
--noUnusedParameters)Expected behavior:
No error
Actual behavior: