c++: Fix handling of the `final` contextual keyword
[geany-mirror.git] / tests / ctags / cxx11-final.cpp
blobfa7894f63d0c581adc73bf5b96ab092efbae188e
1 class Base
3 public:
4 virtual void foo() = 0;
5 };
7 class Derived final : public Base
9 virtual void foo();
10 virtual void final();
13 void Base::foo()
17 void Derived::foo()
21 void Derived::final()