fork(4) download
  1.  
  2. #include <vector>
  3.  
  4. struct Donkey;
  5.  
  6. struct Cage
  7. {
  8. std::vector<Donkey> donkeys;
  9. };
  10.  
  11. struct Donkey
  12. {
  13. };
  14.  
  15. int main()
  16. {
  17. Cage c;
  18. }
  19.  
Success #stdin #stdout 0s 3136KB
stdin
Standard input is empty
stdout
Standard output is empty