fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. namespace moj_projekt {
  5. int a();
  6. }
  7.  
  8. namespace moj_projekt {
  9. int a() {
  10. return 1;
  11. }
  12. }
  13.  
  14. using namespace moj_projekt;
  15. int main() {
  16. int i = a();
  17. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Standard output is empty