* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-initlist5.C
blob901510e106711822d108de62cca20fb1089643b4
1 // PR c++/50024
2 // { dg-do compile { target c++11 } }
4 template< class T >
5 struct Container
7   Container(){
8     int* ptr = new int{};
9   }
12 int main() {
13     Container< int > c;