Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
class-deduction51.C
blob: ef593ff614b8296c04d2eb86a7fbb979230ffa10 [
file
] [
log
] [
blame
]
// PR c++/84937
// { dg-do compile { target c++17 } }
template
<
int
,
int
>
struct
A
{};
template
<
int
I
>
struct
B
{
template
<
auto
J
>
B
(
A
<
I
,
J
>);
};
B b
(
A
<
0
,
0
>{});