summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/concepts/placeholder4.C
blob: b35238c1ce23f1e0615bbc9d05605dbef5e8a209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/66218
// { dg-options "-std=c++17 -fconcepts" }

template <class T, class U>
concept bool Same = __is_same_as(T, U);

template <class T>
concept bool C =
  requires {
    { 0 } -> Same<T>;
  };

template <class T>
struct A {
  template <T t, C c>
  constexpr static bool f() { return true; }
};

static_assert(A<int>::f<1,double>(), "");	// { dg-error "" }
static_assert(A<char>::f<'a',int>(), "");