TypeScript/tests/cases/fourslash/removeExportFromInterfaceError0.ts
2015-03-02 14:41:44 -08:00

16 lines
282 B
TypeScript

/// <reference path="fourslash.ts" />
//// module M {
//// export class C1 { }
//// /*1*/export interface I { n: number; }
//// }
//// module M {
//// function f(): I { return null; } }
////
edit.disableFormatting();
goTo.marker("1");
edit.deleteAtCaret(6);