URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [nullptr13.C] - Rev 693
Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-options "-std=c++0x" }
// Test typeid
#include <typeinfo>
#define assert_true(b) do { char c[2 * bool(b) - 1]; } while(0)
void fun()
{
typeid(nullptr);
const decltype(nullptr) mynull = 0;
typeid(mynull);
assert_true(typeid(nullptr) == typeid(mynull));
}