summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/__null.cpp
blob: 8a1779788395eb6395c835dfd4f44ae005bc8862 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 %s -emit-llvm -o %t

int* a = __null;
int b = __null;

void f() {
  int* c = __null;
  int d = __null;
}