mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05: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;
|
|
}
|