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

11 lines
311 B
Plaintext

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