1// RUN: %clang_cc1 %s -emit-llvm -o %t
2
3int* a = __null;
4int b = __null;
5
6void f() {
7  int* c = __null;
8  int d = __null;
9}
10