+2014-02-12 Paolo Carlini <paolo.carlini@oracle.com>
+
+ PR c++/60047
+ * method.c (implicitly_declare_fn): A constructor of a class with
+ virtual base classes isn't constexpr (7.1.5p4).
+
2014-02-05 Jan Hubicka <hubicka@ucw.cz
* parser.c (synthesize_implicit_template_parm): Use grow_tree_vec.
/* Don't bother marking a deleted constructor as constexpr. */
if (deleted_p)
constexpr_p = false;
- /* A trivial copy/move constructor is also a constexpr constructor. */
+ /* A trivial copy/move constructor is also a constexpr constructor,
+ unless the class has virtual bases (7.1.5p4). */
else if (trivial_p && cxx_dialect >= cxx11
&& (kind == sfk_copy_constructor
- || kind == sfk_move_constructor))
+ || kind == sfk_move_constructor)
+ && !CLASSTYPE_VBASECLASSES (type))
gcc_assert (constexpr_p);
if (!trivial_p && type_has_trivial_fn (type, kind))
--- /dev/null
+// PR c++/60047
+// { dg-do compile { target c++11 } }
+
+struct B { };
+
+template<typename T> struct A : virtual B
+{
+ A();
+ A(const A&);
+};
+
+template<typename T> A<T>::A(const A<T>&) = default;
+
+A<int> a = A<int>();