#include <iostream>
using namespace std;

struct Foo
{
	Foo()=default;
	//Foo(){}
	template<class ... T>
	Foo(T ...)
	{
		cout<<"why not enter?"<<endl;
	}
};

int main()
{
	Foo f{1,2};
}