aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/concepts-template-parm8.C
blob: 265d8947957031f9a2a21d8a99a250f349307897 (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 } }

template<typename T>
  concept C = __is_class(T);

template<typename T>
  concept D = C<T> and __is_empty(T);

template<template<typename Q> requires C<Q> class X>
  struct S { };

// An unconstrained template can be used as an argument for any
// constrained template template parameter.
template<typename A> struct T0 { };
S<T0> x1;

// Matching constraints are valid.
template<typename A> requires C<A> struct T1 { };
S<T1> x2;

int main() { }