1 2 3 4 5 6 7 8 9 10 11 12
// { dg-do run } #include <cxxabi.h> #include <typeinfo> int main () { const std::type_info& ti = typeid (const int (*)[3]); const abi::__pointer_type_info& pti = static_cast<const abi::__pointer_type_info&>(ti); if ((pti.__flags & pti.__const_mask) == 0) return 1; }