TypeScript/tests/cases/fourslash/unusedLocalsInFunction3.ts
2017-06-08 18:59:30 -07:00

11 lines
260 B
TypeScript

/// <reference path='fourslash.ts' />
// @noUnusedLocals: true
////function greeter() {
//// [| var x, y = 0,z = 1; |]
//// x+1;
//// z+1;
////}
verify.rangeAfterCodeFix("var x,z = 1;", /*includeWhiteSpace*/ undefined, /*errorCode*/ 6133);