fork download
  1. class indestructible_base
  2. {
  3. ~indestructible_base();
  4. };
  5.  
  6. class T : indestructible_base
  7. {
  8. public:
  9. //T() {}
  10. };
  11.  
  12. int main(void) { new T(); }
  13.  
Success #stdin #stdout 0.01s 2852KB
stdin
Standard input is empty
stdout
Standard output is empty