```js /** @param * {string} x * @param {number} * y */ function f(x,y) { } ``` **Expected behavior:** `x: string` and `y: number` **Actual behavior:** `x: any` and `y: any`. Note that if you remove the asterisks but not the lines, it works as expected. ```js /** @param {string} x * @param {number} y */ function f(x,y) { } ```