Closed
Description
TypeScript Version: 2.4.0
Code
var a = /*#__PURE__*/(function () { })()
Expected behavior:
var a = /*#__PURE__*/(function () { })();
Actual behavior:
var a = (function () { })();
If I wrote the comment above the declaration, it works, but I need that comment because is going to help me with Uglify to know that this is a pure function with no side-effects.