blob: cec45b46aa043d44348c4758ced6d6f9460a3a9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// { dg-do compile { target c++20 } }
// FIXME: Diagnostics should be better.
struct Base {
template<typename T>
static concept D = __is_same_as(T, int); // { dg-error "static data member" }
template<typename T, typename U>
static concept E = __is_same_as(T, U); // { dg-error "static data member" }
template<typename T>
concept C1 = __is_same_as(T, int); // { dg-error "not in namespace scope" }
};
union U {
template<typename T>
concept C = true; // // { dg-error "not in namespace scope" }
};
// { dg-excess-errors "deprecated" }
|