TypeScript/tests/cases/compiler/moduleMerge.ts

23 lines
372 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// This should not compile both B classes are in the same module this should be a collission
module A
{
class B
{
public Hello(): string
{
return "from private B";
}
}
}
module A
{
export class B
{
public Hello(): string
{
return "from export B";
}
}
}