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

11 lines
103 B
TypeScript

class foo {
static bar = 1;
static bar:string; // errror - duplicate id
}