URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [abi/] [rtti2.C] - Rev 26
Go to most recent revision | Compare with Previous | Blame | View Log
// { 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;
}
Go to most recent revision | Compare with Previous | Blame | View Log