fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. namespace abc {
  5. namespace bcd {
  6. class A {
  7.  
  8. };
  9. }
  10. }
  11.  
  12. namespace simple {
  13. typedef abc::bcd::A B;
  14. }
  15.  
  16. int main() {
  17. // your code goes here
  18. new simple::B;
  19. return 0;
  20. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Standard output is empty