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
7template <typename> void foo (int count) {
8  int i = {count};
9}
10template void foo<int> (int);
11