fork download
  1. class Interface
  2. {
  3. virtual ~Interface()=0;
  4. };
  5.  
  6. Interface::~Interface()
  7. {
  8. }
  9.  
  10. int main()
  11. {
  12. }
Success #stdin #stdout 0.01s 2676KB
stdin
Standard input is empty
stdout
Standard output is empty