URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [nullptr09.C] - Rev 693
Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-options "-std=c++0x" }
// Test compare to literal 0
void fun()
{
if( nullptr == 0 );
decltype(nullptr) mynull = 0;
if( mynull == 0 );
}