1 // { dg-do compile }
2 
3 // Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
4 
5 // PR c++/9457: ICE tsubst'ing initializers in templates.
6 
foo(int count)7 template <typename> void foo (int count) {
8   int i = {count};
9 }
10 template void foo<int> (int);
11