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

34 lines
963 B
Plaintext

==== tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedFunctions.ts (2 errors) ====
module A {
export function fn(s: string) {
return true;
}
export function fng<T, U>(s: T): U {
return null;
}
function fn2(s: string) {
return false;
}
function fng2<T, U>(s: T): U {
return null;
}
}
// these should not be errors since the functions are exported
var fn: (s: string) => boolean;
var fn = A.fn;
var fng: <T, U>(s: T) => U;
var fng = A.fng; // bug 838015
// these should be errors since the functions are not exported
var fn2 = A.fn2;
~~~
!!! Property 'fn2' does not exist on type 'typeof A'.
var fng2 = A.fng2;
~~~~
!!! Property 'fng2' does not exist on type 'typeof A'.