Sign in
cobalt
/
cobalt
/
e83fce97d7405b0b5e569d961aa431b1112ac6ac
/
.
/
src
/
third_party
/
llvm-project
/
clang-tools-extra
/
test
/
clang-move
/
Inputs
/
macro_helper_test.cpp
blob: c2c1e1e1aae6dc4866e4d60503d62758676b1c21 [
file
] [
log
] [
blame
]
#include
"macro_helper_test.h"
#define
DEFINE
(
name
)
\
namespace
ns
{
\
static
const
bool
t1
=
false
;
\
bool
t2_
##name = t1; \
bool
t3_
##name = t1; \
}
\
using
ns
::
t2_
##name;
DEFINE
(
test
)
void
f1
()
{}