fork(1) download
  1. #include <iostream>
  2. template <typename... Ts>
  3. struct A { virtual void foo(Ts&&...) {} };
  4.  
  5. struct B : A<int, unsigned> {
  6. void foo(int&& x, unsigned&& y) override { std::cout << "here"; }
  7. };
  8.  
  9. int main() {
  10. B b;
  11. b.foo(1, 2u);
  12. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
here