TypeScript/tests/cases/fourslash/unusedVariableInForLoop5FSAddUnderscore.ts

11 lines
269 B
TypeScript
Raw Normal View History

/// <reference path='fourslash.ts' />
// @noUnusedLocals: true
////for (const elem in ["a", "b", "c"]) {}
verify.codeFix({
index: 1,
description: "Prefix 'elem' with an underscore",
newFileContent: 'for (const _elem in ["a", "b", "c"]) {}',
});