summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/nullptr06.C
blob: 5dea1fbf171eef4b9fe77811dc5b0e54d6d97c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { 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);
}