#include <iostream>
using namespace std;

struct X
{
	X()
	{}
	
	X(X&&)
	{}
};

int main()
{
	X a;
	X b = a;
}