TypeScript/tests/baselines/reference/reassignStaticProp.errors.txt
2014-07-12 17:30:19 -07:00

14 lines
265 B
Plaintext

==== tests/cases/compiler/reassignStaticProp.ts (1 errors) ====
class foo {
static bar = 1;
static bar:string; // errror - duplicate id
~~~
!!! Duplicate identifier 'bar'.
}