aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/nullptr07.C
blob: 64d442be33115e16c219699af8e453c9c10f37ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do compile }
// { dg-options "-std=c++0x" }

// Test compare to int

void fun()
{
  int n = 0;
  if( n == nullptr ); // { dg-error "invalid operands of types " }
  const int m = 1;
  if( m == nullptr ); // { dg-error "invalid operands of types " }
  decltype(nullptr) mynull = 0;
  if( n == mynull ); // { dg-error "invalid operands of types " }
  if( m == mynull ); // { dg-error "invalid operands of types " }
}