Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
class-deduction97.C
blob: 32818681d8f20daa06e03612881e2fd52158b228 [
file
] [
log
] [
blame
]
// PR c++/89062
// { dg-do compile { target c++17 } }
template
<
class
T
>
struct
Foo
{
Foo
(
T
);
};
Foo
<int>
x
(
Foo
{
1
});