Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGenCXX
/
eval-recursive-constant.cpp
blob: 608c95d828ed78bae64f937c5285f9625639381e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm-only
extern
const
int
a
,
b
;
const
int
a
=
b
,
b
=
a
;
int
c
()
{
if
(
a
)
return
1
;
return
0
;
}