summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/nullptr06.C
blob: c50bb9bc1132ac1965a4ac819a261d1a02352517 (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 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);
}