comparison gcc/testsuite/g++.dg/cpp2a/concepts-member-concept.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 // { dg-do compile { target c++2a } }
2
3 // FIXME: Diagnostics should be better.
4
5 struct Base {
6 template<typename T>
7 static concept D = __is_same_as(T, int); // { dg-error "static data member" }
8
9 template<typename T, typename U>
10 static concept E = __is_same_as(T, U); // { dg-error "static data member" }
11
12 template<typename T>
13 concept C1 = __is_same_as(T, int); // { dg-error "not in namespace scope" }
14 };
15
16 union U {
17 template<typename T>
18 concept C = true; // // { dg-error "not in namespace scope" }
19 };
20
21 // { dg-excess-errors "deprecated" }