TypeScript/tests/cases/compiler/overloadsInDifferentContainersDisagreeOnAmbient.ts
2014-07-12 17:30:19 -07:00

8 lines
156 B
TypeScript

declare module M {
// Error because body is not ambient and this overload is
export function f();
}
module M {
export function f() { }
}