aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2004-01-11-DynamicInitializedConstant.cpp.tr
blob: 03fead23f2f7a0e6ae52f83cf0494d645b35e49c (plain)
1
2
3
4
5
6
// RUN: %llvmgcc -xc++ -S -o - %s | not grep ' constant '

extern int X;
const int Y = X;
const int* foo() { return &Y; }