1 2 3 4 5 6 7 8 9 10 11 12
// { dg-do run { target c++11 } } // Test typeid #include <typeinfo> int main() { const decltype(nullptr) mynull = 0; if (typeid(nullptr) != typeid(mynull)) __builtin_abort(); }