aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/abi/rtti2.C
blob: eece8724a2a29f6de4e545edacd3950ef97a78a9 (plain)
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;
}