blob: 0c9333fb6d7a0dba6daa9591568f3712e29944fe [file] [log] [blame]
Eric Christopheraeac10e2011-08-20 00:17:18 +00001// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3// CHECK-NOT: constant
4extern int X;
5const int Y = X;
6const int* foo() { return &Y; }