TypeScript/tests/baselines/reference/ModuleWithExportedAndNonExportedClasses.errors.txt
2014-07-12 17:30:19 -07:00

38 lines
959 B
Plaintext

==== tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedClasses.ts (2 errors) ====
module A {
export class A {
id: number;
name: string;
}
export class AG<T, U>{
id: T;
name: U;
}
class A2 {
id: number;
name: string;
}
class AG2<T, U>{
id: T;
name: U;
}
}
// no errors expected, these are all exported
var a: { id: number; name: string };
var a = new A.A();
var AG = new A.AG<number, string>()
// errors expected, these are not exported
var a2 = new A.A2();
~~
!!! Property 'A2' does not exist on type 'typeof A'.
var ag2 = new A.A2<string, number>();
~~
!!! Property 'A2' does not exist on type 'typeof A'.