brintos

brintos / llvm-project-archived public Read only

0
0
Text · 372 B · 03b37cd Raw
30 lines · c
1static inline void f1() {2#ifdef DEF3  if (false && false)4    return;5 6  if (true || false || true)7    return;8 9  if (true && false)10    return;11#endif12}13 14template<typename T>15void f2(T **x) {16#ifdef DEF17  if (false && false)18    *x = nullptr;19 20  if (true || false || true)21    *x = nullptr;22 23  if (true && false)24    *x = nullptr;25#endif26}27 28static inline void f3() {29}30