aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.dg/cpp0x/constexpr-59686.C9
2 files changed, 14 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 756baf3..378fba2 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2015-03-19 Paolo Carlini <paolo.carlini@oracle.com>
+
+ PR c++/59686
+ * g++.dg/cpp0x/constexpr-59686.C: New.
+
2015-03-19 Jakub Jelinek <jakub@redhat.com>
PR sanitizer/64265
diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-59686.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-59686.C
new file mode 100644
index 0000000..8936214
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-59686.C
@@ -0,0 +1,9 @@
+// PR c++/59686
+// { dg-do compile { target c++11 } }
+
+int main()
+{
+ static const int x = 5;
+ const int * const y = &x;
+ static_assert(y, ""); // { dg-error "non-constant|value" }
+}