diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 7e97d61895f0..480e139387ab 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2014-11-03  Paolo Carlini  <paolo.carlini@oracle.com>
+
+	PR c++/57820
+	* g++.dg/cpp0x/constexpr-ctor16.C: New.
+	* g++.dg/cpp0x/constexpr-ctor17.C: Likewise.
+
 2014-11-03  Marc Glisse  <marc.glisse@inria.fr>
 
 	PR tree-optimization/60770
diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor16.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor16.C
new file mode 100644
index 000000000000..12aaeebf0917
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor16.C
@@ -0,0 +1,11 @@
+// PR c++/57820
+// { dg-do compile { target c++11 } }
+
+struct C
+{
+  int a = 2;
+  int b = a + 1;
+};
+
+C c;
+constexpr C d = {};
diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor17.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor17.C
new file mode 100644
index 000000000000..ed82a14e6512
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor17.C
@@ -0,0 +1,13 @@
+// PR c++/57820
+// { dg-do compile { target c++11 } }
+
+struct C
+{
+  int a = 2;
+  int b = a + 1;
+
+  constexpr C() {}
+};
+
+C c;
+constexpr C d;