#include <iostream>
#include <cstdlib>
using namespace std;

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

int main() {
	Block block;
	block.number = 0;
	
	if (block.number == 0) {
		exit(EXIT_FAILURE);
	}
	
	cout << "This point won't be reached!" << endl;
	
	return 0;
}