fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct A
  5. {
  6. typedef int BLAH;
  7. };
  8.  
  9. struct B : A
  10. {
  11. BLAH b;
  12. };
  13.  
  14. int main() {
  15. B b;
  16. return 0;
  17. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty