#include <iostream>

struct T{};
struct D:T{~D(){std::cout<<"D";}};

using namespace std;

int main() {
	const T& a = D();    
	return 0;
}