TypeScript/tests/cases/fourslash/unusedVariableInForLoop4FS.ts
Arthur Ozga 389959a5b5 Merge branch 'master' into interfaceFixes
* additionally consolidated codeFix testing
2016-11-15 14:43:14 -08:00

11 lines
231 B
TypeScript

/// <reference path='fourslash.ts' />
// @noUnusedLocals: true
//// function f1 () {
//// [|for(var i = 0, j= 0, k=0; ;j++, k++) |]{
////
//// }
//// }
verify.rangeAfterCodeFix("for(var j = 0, k=0; ;j++,k++)");