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

12 lines
286 B
TypeScript

/// <reference path='fourslash.ts' />
// @noUnusedLocals: true
//// [| namespace greeter {
//// type hw = "Hello" |"world";
//// export type nw = "No" | "Way";
//// } |]
verify.rangeAfterCodeFix(`namespace greeter {
export type nw = "No" | "Way";
}`);