fork download
  1. #include <utility>
  2.  
  3. struct Base
  4. {
  5. Base(int myArg) {}
  6. };
  7.  
  8. struct Derived : public Base
  9. {
  10. template <typename... Args>
  11. Derived(Args&&... args, int myArg)
  12. :
  13. Base(std::forward<Args>(args)...)
  14. {
  15. }
  16. };
  17.  
  18. int main() {
  19. Derived d(1, 1);
  20.  
  21. // your code goes here
  22. return 0;
  23. }
Compilation error #stdin compilation error #stdout 0s 3136KB
stdin
Standard input is empty
compilation info
prog.cpp: In function 'int main()':
prog.cpp:19:16: error: no matching function for call to 'Derived::Derived(int, int)'
  Derived d(1, 1);
                ^
prog.cpp:19:16: note: candidates are:
prog.cpp:11:2: note: template<class ... Args> Derived::Derived(Args&& ..., int)
  Derived(Args&&... args, int myArg)
  ^
prog.cpp:11:2: note:   template argument deduction/substitution failed:
prog.cpp:19:16: note:   candidate expects 1 argument, 2 provided
  Derived d(1, 1);
                ^
prog.cpp:8:8: note: constexpr Derived::Derived(const Derived&)
 struct Derived : public Base
        ^
prog.cpp:8:8: note:   candidate expects 1 argument, 2 provided
prog.cpp:8:8: note: constexpr Derived::Derived(Derived&&)
prog.cpp:8:8: note:   candidate expects 1 argument, 2 provided
stdout
Standard output is empty