Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
nontype-auto8.C
blob: 9b26d8a81c1a9b00dec07c634706df1212085158 [
file
] [
log
] [
blame
]
// PR c++/79549
// { dg-do compile { target c++17 } }
template
<
auto
...>
struct
meow
;
template
<
auto
C
>
struct
meow
<
C
>
{
};
meow
<
1
>
m
;