blob: c50bb9bc1132ac1965a4ac819a261d1a02352517 [file] [log] [blame]
// { 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);
}