TypeScript/tests/baselines/reference/primaryExpressionMods.errors.txt
Mohamed Hegazy e43680de11 show more clearly error message when found missing module name
Conflicts:
	src/compiler/diagnosticInformationMap.generated.ts
	src/compiler/diagnosticMessages.json
2015-05-06 10:13:32 -07:00

21 lines
837 B
Plaintext

tests/cases/compiler/primaryExpressionMods.ts(7,8): error TS2304: Cannot find name 'M'.
tests/cases/compiler/primaryExpressionMods.ts(11,8): error TS2503: Cannot find namespace 'm'.
==== tests/cases/compiler/primaryExpressionMods.ts (2 errors) ====
module M
{
export interface P { x: number; y: number; }
export var a = 1;
}
var p: M.P; // Used as ModuleName
var m: M = M; // Used as TypeName and PrimaryExpression (error on TypeName)
~
!!! error TS2304: Cannot find name 'M'.
var m2: typeof M = M; // Used as PrimaryExpression in TypeQuery
var x1 = M.a; // Used as PrimaryExpression
var x2 = m.a; // Same as M.a
var q: m.P; // Error
~
!!! error TS2503: Cannot find namespace 'm'.