* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor5.C
blobabfc72c8fdd8fa3ee40cdf53fe6629475a08f884
1 // PR c++/46877
2 // { dg-do compile { target c++11 } }
4 struct new_allocator
6   constexpr new_allocator ();
7 };
9 struct string
11   constexpr string ()
12   {
13   }
14   new_allocator a;
17 struct pair
19   const string first;
20   constexpr pair ()
21   {
22   }
25 constexpr
26 new_allocator::new_allocator ()
30 pair p;