xref: /Universal-ctags/Units/parser-cxx.r/bug-github-871.cpp.d/input.cpp (revision 7fcce8417f035ade9054a3e14c2214eda4e52757)
1 // Bug reported by hierabyss on github.com.
2 // funb() was not present in the ctags output.
3 
funa()4 bool funa()
5 {
6     if (first) return false;
7 
8 #if defined (MACRO)
9     if (a)
10     {
11         if (second)
12 #else
13     if (a)
14     {
15 #endif
16         return false;
17     }
18 
19     return true;
20 }
21 
22 int funb()
23 {
24 }