fork download
  1. #include <iostream>
  2.  
  3. struct T{};
  4. struct D:T{~D(){std::cout<<"D";}};
  5.  
  6. using namespace std;
  7.  
  8. int main() {
  9. const T& a = D();
  10. return 0;
  11. }
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
D