#include <utility>
struct Base
{
Base(int myArg) {}
};
struct Derived : public Base
{
template <typename... Args>
Derived(Args&&... args, int myArg)
:
Base(std::forward<Args>(args)...)
{
}
};
int main() {
Derived d(1, 1);
// your code goes here
return 0;
}
I2luY2x1ZGUgPHV0aWxpdHk+CgpzdHJ1Y3QgQmFzZQp7CglCYXNlKGludCBteUFyZykge30KfTsKCnN0cnVjdCBEZXJpdmVkIDogcHVibGljIEJhc2UKewoJdGVtcGxhdGUgPHR5cGVuYW1lLi4uIEFyZ3M+CglEZXJpdmVkKEFyZ3MmJi4uLiBhcmdzLCBpbnQgbXlBcmcpCgk6CgkJQmFzZShzdGQ6OmZvcndhcmQ8QXJncz4oYXJncykuLi4pCgl7Cgl9Cn07CgppbnQgbWFpbigpIHsKCURlcml2ZWQgZCgxLCAxKTsKCQoJLy8geW91ciBjb2RlIGdvZXMgaGVyZQoJcmV0dXJuIDA7Cn0=
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