TypeScript/tests/cases/fourslash/funduleWithRecursiveReference.ts
Cyrus Najmabadi eed6f0deca Use an output format for quickinfo that more closely matches the original source.
i.e. use  "var v: string" instead of "(var) v: string".

The parens case should only be used when we're using an english description instead of
an actual language construct.
2015-03-24 00:16:49 -07:00

15 lines
No EOL
375 B
TypeScript

/// <reference path='fourslash.ts'/>
////module M {
//// export function C() {}
//// export module C {
//// export var /**/C = M.C
//// }
////}
// this line triggers a semantic/syntactic error check, remove line when 788570 is fixed
edit.insert('');
goTo.marker();
verify.quickInfoIs('var M.C.C: typeof M.C');
verify.numberOfErrorsInCurrentFile(0);