Example input: ```cpp template <typename T> struct ArgCount { static constexpr auto f1{&T::operator()}; static constexpr auto f2{&T::bar()}; }; ``` Output: ```cpp template <typename T> struct ArgCount { static constexpr auto f1 { &T::operator() }; static constexpr auto f2{&T::bar()}; }; ``` [Godbolt](https://godbolt.org/z/hvzP13qsK) Note how the problem only happens with `operator()`, not with `bar()`. This is happening on trunk.