hanchenye-llvm-project/clang/test/SemaCXX/__null.cpp

12 lines
319 B
C++
Raw Normal View History

// RUN: clang -triple x86_64-unknown-unknown %s -fsyntax-only -verify &&
// RUN: clang -triple i686-unknown-unknown %s -fsyntax-only -verify
void f() {
int* i = __null;
i = __null;
int i2 = __null;
// Verify statically that __null is the right size
int a[sizeof(typeof(__null)) == sizeof(void*)? 1 : -1];
}