Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
init1.C
blob: fdbff8d3cb19633ac0bb29b8421486e9b51a7dc3 [
file
] [
log
] [
blame
]
// { dg-do compile }
// Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
// PR c++/9457: ICE tsubst'ing initializers in templates.
template
<typename>
void
foo
(
int
count
)
{
int
i
=
{
count
};
}
template
void
foo
<int>
(
int
);