In a JavaScript file under `--allowJs`: ``` js class Test { constructor() { this.foo = null; } foo() {} } ``` Produces errors > a.js(3,5): error TS2300: Duplicate identifier 'foo'. > a.js(5,3): error TS2300: Duplicate identifier 'foo'.