Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
class-deduction49.C
blob: 658ae43e7005564e43161a5f07de6b2e00d580df [
file
] [
log
] [
blame
]
// PR c++/84015
// { dg-do compile { target c++17 } }
template
<
int
I
>
struct
A
{
};
template
<
int
I
>
struct
B
{
template
<
template
<auto>
class
T
>
B
(
T
<
I
>);
};
A
<
42
>
a
;
B b
(
a
);