#include <iostream>
#include <string>

using namespace std;

template<class T>
void test1(const T &&t)
{
	test2(t);
}

template<class T>
void test2(const T &&t)
{
	return;
}

int main (void)
{
	test1(std::string{" "});

	return 0;
}