blob: 0170042b2adf178669fbd544b222a06b4d19e99d [file] [log] [blame]
// { dg-do compile { target c++20 } }
template <class T, class U>
concept C = requires (T t, U u) { t + u; }; // { dg-message "in requirements" }
template <class T, class U>
requires C<T,U>
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 "" }
}