Sign in
ara-mdk
/
platform
/
external
/
clang
/
f72663fc962c1c27a4793ebd3d2e3d81a4f4e984
/
.
/
test
/
CodeGenCXX
/
2004-01-11-DynamicInitializedConstant.cpp
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
;
}