1 // Bug reported by hierabyss on github.com. 2 // funb() was not present in the ctags output. 3 funa()4bool 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 }