Extended Description
The following snippet:
template <class... Ts>
S(Ts...) -> S<Ts...>;
is formatted to:
template <class... Ts>
S(Ts...)->S<Ts...>;
Which seems to me to be wrong as the spaces are missing around -> (arrow operator).
Version: trunk from 2017-11-22.