annotate gcc/testsuite/g++.dg/concepts/diagnostic8.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
152
2b5abeee2509 update gcc11
anatofuz
parents:
diff changeset
1 // PR c++/94306
2b5abeee2509 update gcc11
anatofuz
parents:
diff changeset
2 // { dg-do compile { target c++2a } }
2b5abeee2509 update gcc11
anatofuz
parents:
diff changeset
3
2b5abeee2509 update gcc11
anatofuz
parents:
diff changeset
4 template<typename T> struct S { };
2b5abeee2509 update gcc11
anatofuz
parents:
diff changeset
5 template<typename T> requires { typename T::type; } struct S<T> { };
2b5abeee2509 update gcc11
anatofuz
parents:
diff changeset
6 // { dg-error "missing additional .requires." "" { target *-*-* } .-1 }