aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/nullptr06.C
blob: e933c35287ef4dff7779e47fa51827c26ee58e04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do compile { target c++11 } }

// Test compare to pointer

#define assert_true(b) do { char c[2 * bool(b) - 1]; } while(0)

char* const cp1 = nullptr;

void fun()
{
  assert_true(cp1 == nullptr);
  decltype(nullptr) mynull = 0;
  assert_true(cp1 == mynull);
}