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

16 lines
245 B
TypeScript

/// <reference path='fourslash.ts' />
// @noUnusedLocals: true
//// function f1 () {
//// [|let x = 10;
//// {
//// let x = 11;
//// }
//// x;|]
//// }
verify.rangeAfterCodeFix(`let x = 10;
{
}
x;`);