blob: 0c9333fb6d7a0dba6daa9591568f3712e29944fe [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
// CHECK-NOT: constant
extern int X;
const int Y = X;
const int* foo() { return &Y; }