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

23 lines
372 B
TypeScript

// 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";
}
}
}