https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96333
Barry Revzin <barry.revzin at gmail dot com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |barry.revzin at gmail dot com --- Comment #1 from Barry Revzin <barry.revzin at gmail dot com> --- Shorter repro: template <typename T> int f(T ); template <typename T> requires true int f(T const&); int i = f(42);