TypeScript/tests/baselines/reference/functionWithSameNameAsField.errors.txt
2014-09-11 16:11:08 -07:00

11 lines
325 B
Plaintext

==== tests/cases/compiler/functionWithSameNameAsField.ts (1 errors) ====
class TestProgressBar {
public total: number;
public total(total: number) {
~~~~~
!!! error TS2300: Duplicate identifier 'total'.
this.total = total;
return this;
}
}