When defining a forward declared function with return type decltype(auto), doxygen 1.8.15 with default configuration is confused by the return type:
decltype(auto) Function();
decltype(auto) Function()
{ }
Decltype.hpp:3: warning: documented symbol `decltype' was not declared or defined.
Example