1 // PR c++/57673
2 // { dg-do compile { target c++11 } }
3 
4 template< int ... p >
5 struct d {
6   int n = sizeof ... ( p );
7 };
8