c++: Fix handling of the `final` contextual keyword
[geany-mirror.git] / tests / ctags / bug1585745.cpp
blob410aab16e80348303b4f08252d365dd4f7bf3d1d
1 // Despite the weird whitespace, all these destructors should be recognized and tagged.
2 Class1::~Class1() { }
3 Class2::~ Class2() { }
4 Class3:: ~Class3() { }
5 Class4:: ~ Class4() { }
6 class Class5 {
7 public: ~ Class5() { }
8 };