blob: 03fead23f2f7a0e6ae52f83cf0494d645b35e49c [file] [log] [blame]
// RUN: %llvmgcc -xc++ -S -o - %s | not grep ' constant '
extern int X;
const int Y = X;
const int* foo() { return &Y; }