mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
6 lines
123 B
C++
6 lines
123 B
C++
// RUN: %llvmgcc -xc++ -S -o - %s | not grep { constant }
|
|
|
|
extern int X;
|
|
const int Y = X;
|
|
const int* foo() { return &Y; }
|
|
|