view gcc/testsuite/g++.dg/abi/rtti2.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { 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;
}