mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 01:35:49 -04:00
9 lines
124 B
C++
9 lines
124 B
C++
// RUN: %clang_cc1 %s -emit-llvm -o %t
|
|
|
|
int* a = __null;
|
|
int b = __null;
|
|
|
|
void f() {
|
|
int* c = __null;
|
|
int d = __null;
|
|
}
|