opnsense-src/test/FrontendC++/2004-01-11-DynamicInitializedConstant.cpp
2009-06-02 17:52:33 +00:00

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; }