https://gcc.gnu.org/bugzilla/show_bug.cgi?id=124324
friedkeenan at protonmail dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |friedkeenan at protonmail dot
com
--- Comment #3 from friedkeenan at protonmail dot com ---
Don't know if this is helpful, but I've run into another manifestation of what
I think is the same bug:
```
#include <meta>
template<typename>
void function();
constexpr auto substituted = substitute(^^function, {^^int});
static_assert(is_function(substituted));
```
The static_assert should succeed, but does not.
If one instead does
```
static_assert(is_function(^^function<int>));
```
Then it succeeds.