fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. namespace A::B::C
  6. {
  7. void fun(){std::cout << "ddd" << std::endl;}
  8. }
  9.  
  10. int main() {
  11. A::B::C::fun();
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
ddd