plugins: change return codes of geany_load_module() and GeanyPluginFuncs::init
[geany-mirror.git] / tests / ctags / cxx11-noexcept.cpp
bloba807beb63d41a93a20c7cbbb0ede9dafab751a39
1 class Base
3 public:
4 virtual void foo() noexcept = 0;
5 virtual void bar() const noexcept = 0;
6 int baz() noexcept { return 42; }
7 };