summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/readability-redundant-preprocessor.cpp
blob: 317905dab828669650ada04f6318f8a26dd3e0c4 (plain)
1
2
3
4
5
#ifndef FOO
#ifdef FOO // inner ifdef is considered redundant
void f();
#endif
#endif