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