android_mt6572_jiabo/external/clang/test/CodeGenCXX/2004-01-11-DynamicInitializedConstant.cpp
2025-09-05 16:56:03 +08:00

6 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; }