#include <iostream> struct X { X() = default; X(const X&) = delete; ~X() { std::cout << "goodbye\n"; } }; int main(){ auto&& x{X()};}
Standard input is empty
goodbye
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!