#include <iostream>
using namespace std;

class Product
{
public:
	Product(const char *name, int i);
	Product(Product &&rhs) = delete;
	Product(const Product &rhs) = delete;
	~Product();
private:
	const char *m_name;
	int m_i;
};

int main() {
	auto p = Product{"abc",123};
	return 0;
}