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

template<typename T>
concept bool NameProvider()
{
  return requires(){
    typename T::_name_t::template _member_t<int>;
  };
}

template<NameProvider... ColSpec>
void getTable(const ColSpec&...)
{}

int f()
{
  getTable(7, 'a'); // { dg-error "cannot call" }
};