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

15 lines
225 B
TypeScript

class C {
get x() { return 1; }
static get x() {
return '';
}
static foo() { }
}
module C {
export var x = 1;
}
module C {
export function foo() { }
export function x() { }
}