re PR c++/59686 (Non-constexpr pointers accepted in constant expressions)
authorPaolo Carlini <paolo.carlini@oracle.com>
Thu, 19 Mar 2015 08:57:01 +0000 (08:57 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Thu, 19 Mar 2015 08:57:01 +0000 (08:57 +0000)
2015-03-19  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/59686
* g++.dg/cpp0x/constexpr-59686.C: New.

From-SVN: r221510

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/constexpr-59686.C [new file with mode: 0644]

index 756baf3847e07ec85b1a4f56c73c60e8e13ea53f..378fba23cf2809e3c29eff6b16774dad194db3be 100644 (file)
@@ -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 (file)
index 0000000..8936214
--- /dev/null
@@ -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" }
+}