* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor21.C
blob4bf57b9e8976b78098ed4280326316dfea7efefd
1 // PR c++/83835
2 // { dg-do compile { target c++11 } }
4 struct Z
6   void const * p_;
7   constexpr Z( void const * p ): p_( p ) {}
8   ~Z();
9 };
11 struct Y
13   Z z_;
14   constexpr Y() noexcept: z_( this ) {}