blob: 56e59c06f16bd11e1227b7a5921722a934051189 [file] [log] [blame]
David Blaikie95187bd2012-03-15 04:50:32 +00001// 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
Douglas Gregorac72d402008-12-01 17:31:21 +00003
4void f() {
5 int* i = __null;
6 i = __null;
7 int i2 = __null;
8
9 // Verify statically that __null is the right size
10 int a[sizeof(typeof(__null)) == sizeof(void*)? 1 : -1];
Anders Carlsson3f704562008-12-21 22:39:40 +000011
12 // Verify that null is evaluated as 0.
13 int b[__null ? -1 : 1];
Douglas Gregorac72d402008-12-01 17:31:21 +000014}
Chandler Carruth82214a82011-02-18 23:54:50 +000015
16struct A {};
17
18void g() {
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}}
21}