xref: /Universal-ctags/Units/parser-cxx.r/cxx14-combined.d/input.cpp (revision 8295c52c7a01d8db7b6020c5d43831d53313383c)
1 struct Base {
2   virtual void baz() const throw() = 0;
3 };
4 
5 struct Foo final : public Base {
barFoo6   static constexpr auto bar() noexcept { return 1; }
7   virtual void baz() const throw() final override;
8 };
9