// { dg-do compile { target c++20 } } template concept C = requires (T t, U u) { t + u; }; // { dg-message "in requirements" } template requires C void f(T t, U u) { t + u; } struct non_addable { }; int main() { // FIXME: This diagnostic is being emitted twice, when it should // be emitted just once. using U = decltype(f(42, non_addable{})); // { dg-error "" } }