diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index cb4b23c0b76a..c663b25e13c5 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,8 @@ 2020-04-14 Patrick Palka + PR c++/93207 + * g++.dg/concepts/variadic5.C: New test. + PR c++/85278 * g++.dg/concepts/diagnostic9.C: New test. diff --git a/gcc/testsuite/g++.dg/concepts/variadic5.C b/gcc/testsuite/g++.dg/concepts/variadic5.C new file mode 100644 index 000000000000..a871079e5de1 --- /dev/null +++ b/gcc/testsuite/g++.dg/concepts/variadic5.C @@ -0,0 +1,26 @@ +// PR c++/93207 +// { dg-do compile { target concepts } } + +template +concept C = true; + +struct S +{ + template + void f() + requires C; +}; + +template +void S::f() +requires C +{ +} + +void foo() +{ + S s; + s.f<>(); + s.f(); + s.f(); +}