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

11 lines
370 B
Plaintext

==== tests/cases/compiler/overloadsInDifferentContainersDisagreeOnAmbient.ts (1 errors) ====
declare module M {
// Error because body is not ambient and this overload is
export function f();
}
module M {
export function f() { }
~
!!! Overload signatures must all be ambient or non-ambient.
}