mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 11:50:47 -05:00
7 lines
187 B
C
7 lines
187 B
C
// RUN: clang-cc -emit-llvm -o - %s | not grep "common"
|
|
|
|
// This checks that the global won't be marked as common.
|
|
// (It shouldn't because it's being initialized).
|
|
|
|
int a;
|
|
int a = 242;
|