netbsd/external/bsd/llvm/dist/clang/test/CodeGenCXX/2004-01-11-DynamicInitializedConstant.cpp
2014-01-15 10:53:42 +01:00

7 lines
140 B
C++

// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
// CHECK-NOT: constant
extern int X;
const int Y = X;
const int* foo() { return &Y; }