// Test to verify that evaluating reinterpret_cast is diagnosed in // constant expressions. // { dg-do compile { target c++11 } } int i; // The following was accepted due to bug 49171. constexpr void *q = reinterpret_cast(&i); // { dg-error "not a constant expression" } constexpr void *r0 = reinterpret_cast(1); // { dg-error "not a constant expression|'reinterpret_cast' from integer to pointer" } constexpr void *r1 = reinterpret_cast(sizeof 'x'); // { dg-error "'reinterpret_cast\\(1\[ul\]\*\\)' is not a constant expression" } template constexpr bool f () { #if __cplusplus > 201103L T *p = reinterpret_cast(sizeof (T)); // { dg-error "not a constant expression" "" { target c++14 } } return p; #else return *reinterpret_cast(sizeof (T)); // { dg-error "not a constant expression" "" { target c++11_only } } #endif } constexpr bool b = f(); // { dg-message "in .constexpr. expansion of " }