Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
Preprocessor
/
cxx_not.cpp
blob: 67e8775295ad70235bdb66c729a2e47823ceba28 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -DA=1 -E %s | grep 'int a = 927 == 927'
// RUN: %clang_cc1 -E %s | grep 'int a = 37 == 37'
#if not defined(A)
#define
X
37
#else
#define
X
927
#endif
#if ! defined(A)
#define
Y
37
#else
#define
Y
927
#endif
int
a
=
X
==
Y
;