// https://www.sandordargo.com/blog/2025/04/02/cpp26-variadic-friends

template<class T=void,
         class U=void>
class Foo {
  friend T;
  friend U;
};

template<class... Ts>
class Foo {
  friend Ts...;
};