* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted6.C
blob440c58db46edc8b39ef2d7db0fd002fdd3edf328
1 // PR c++/37906
2 // { dg-do compile { target c++11 } }
4 struct b
6   b() = default;
7   b(const b&) = delete;
8 };
10 void test01()
12   static_assert(__has_trivial_constructor(b), "default ctor not trivial");