```js /** * @template {T} * @template {U} * @typedef Morphism {(x: T) => U} */ ``` Currently we refuse to accept the second `@template`: ``` [js] 'template' tag already specified. ``` But Closure does accept this syntax.