aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/concepts-variadic3.C
blob: 6fa7113e7343aa3a67558a70456efa8cfa9d280e (plain)
1
2
3
4
5
6
7
// PR c++/98717
// { dg-do compile { target c++20 } }

template<typename... T>
concept True = true;

static_assert(True<>);