The following code
struct f {
  template <class T>
  void bar() && noexcept {}
};will be formatted to the following with LLVM style, and
AlwaysBreakTemplateDeclarations: Yes
struct f {
  template <class T>
      void bar() && noexcept {}
};The indentation of the void bar() line is wrong.
could this be done using the MatchingParen?