view gcc/testsuite/g++.dg/abi/rtti2.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
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;
}