1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown %s -Wno-null-conversion -fsyntax-only -verify
2 // RUN: %clang_cc1 -triple i686-unknown-unknown %s -Wno-null-conversion -fsyntax-only -verify
9 // Verify statically that __null is the right size
10 int a
[sizeof(typeof(__null
)) == sizeof(void*)? 1 : -1];
12 // Verify that null is evaluated as 0.
13 int b
[__null
? -1 : 1];
19 (void)(0 ? __null
: A()); // expected-error {{non-pointer operand type 'A' incompatible with NULL}}
20 (void)(0 ? A(): __null
); // expected-error {{non-pointer operand type 'A' incompatible with NULL}}