<!-- Consider supporting the project! https://opencollective.com/terser --> **Bug report or Feature request?** Bug report **Version (complete output of `terser -V` or specific git commit)** **Complete CLI command or `minify()` options used** I use terser playground **`terser` input** ```js new A()`` ``` <!-- Complete valid ECMAScript code exhibiting the issue with `terser` ALONE - without third party tools or libraries. This means no webpack, rollup, browserify or parcel, among others. Ideally the input should be as small as possible. Code must be in text form - not a screen cap. Post a link to a gist if necessary. Issues without a reproducible test case will be closed. --> **`terser` output or error** ```js new A`` ``` which would be parsed as new (A``) **Expected result** output ```js new A()`` // or (new A)`` ```