blob: 0170042b2adf178669fbd544b222a06b4d19e99d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// { 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 "" }
}
|