#include <iostream>
using namespace std;

struct Block {
	int number;
	
	~Block() {
		cout << "delete!" << endl;
	}
};

void function(const Block &&block) {
}

int main() {
	Block block;
	
	function(std::move(block));
	
	return 0;
}