fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class I
  5. {
  6. virtual int foo() = 0;
  7. };
  8.  
  9. class A : I
  10. {
  11. int foo() override final {return 0;}
  12. };
  13.  
  14. int main() {
  15. // your code goes here
  16. return 0;
  17. }
Success #stdin #stdout 0s 3136KB
stdin
Standard input is empty
stdout
Standard output is empty