Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
concepts
/
var-concept7.C
blob: 2cfe2666e16b400fde2c4329febbd07ac0626931 [
file
] [
log
] [
blame
]
// PR c++/85133
// { dg-do compile { target c++17_only } }
// { dg-options "-fconcepts" }
template
<typename>
concept
bool
C
;
// { dg-error "no initializer" }
template
<
C
...>
struct
A
{};
A
<int>
a
;