if the `:` is deleted from the following code sample the issue goes away. ```javascript const thing = { fn: function (a, b)/*: boolean */ { const x = 1; if (!x) { throw new Error(); } return false; } }; ```  