OSDN Git Service

PR c++/44157
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / nullptr09.C
1 // { dg-do compile }
2 // { dg-options "-std=c++0x" }
3
4 // Test compare to literal 0
5
6 void fun()
7 {
8   if( nullptr == 0 );
9 }