blob: e788c16b12067cd23d970e6b0690429daa399c7a [file] [log] [blame]
// { dg-do run { target c++11 } }
// Test typeid
#include <typeinfo>
int main()
{
const decltype(nullptr) mynull = 0;
if (typeid(nullptr) != typeid(mynull))
__builtin_abort();
}