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

13 lines
301 B
TypeScript

/// <reference path='fourslash.ts' />
// @noUnusedLocals: true
////namespace greeter {
//// [|let a = "dummy entry", b, c = 0;|]
//// export function function1() {
//// a = "dummy";
//// c++;
//// }
////}
verify.rangeAfterCodeFix(`let a = "dummy entry", c = 0;`);