* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr13.C
blobe788c16b12067cd23d970e6b0690429daa399c7a
1 // { dg-do run { target c++11 } }
3 // Test typeid
5 #include <typeinfo>
7 int main()
9   const decltype(nullptr) mynull = 0;
10   if (typeid(nullptr) != typeid(mynull))
11     __builtin_abort();