1 // { dg-do compile { target c++11 } }
2 
3 // Test compare to literal 0
4 
fun()5 void fun()
6 {
7   if( nullptr == 0 );
8   decltype(nullptr) mynull = 0;
9   if( mynull == 0 );
10 }
11