TypeScript/tests/cases/compiler/duplicateIdentifiersAcrossContainerBoundaries.ts

52 lines
775 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
module M {
export interface I { }
}
module M {
2015-10-17 01:29:11 +02:00
export class I { }
2014-07-13 01:04:16 +02:00
}
module M {
export function f() { }
}
module M {
export class f { } // error
}
module M {
function g() { }
}
module M {
export class g { } // no error
}
module M {
export class C { }
}
module M {
function C() { } // no error
}
module M {
export var v = 3;
}
module M {
export var v = 3; // error for redeclaring var in a different parent
}
class Foo {
static x: number;
}
module Foo {
export var x: number; // error for redeclaring var in a different parent
}
module N {
export module F {
var t;
}
}
declare module N {
export function F(); // no error because function is ambient
}