TypeScript/tests/cases/fourslash/quickInfoOnMergedModule.ts
Cyrus Najmabadi 0e01e48d0e Always run all fourslash tests in high fidelity typing mode.
We want to verify after every edit that our incremental data is correct.
2014-12-14 11:34:15 -08:00

20 lines
No EOL
451 B
TypeScript

/// <reference path='fourslash.ts'/>
////module M2 {
//// export interface A {
//// foo: string;
//// }
//// var a: A;
//// var r = a.foo + a.bar;
////}
////module M2 {
//// export interface A {
//// bar: number;
//// }
//// var a: A;
//// var r = a.fo/*1*/o + a.bar;
////}
goTo.marker('1');
verify.quickInfoIs("(property) M2.A.foo: string", undefined);
verify.numberOfErrorsInCurrentFile(0);