fork download
  1. #include <iostream>
  2. using namespace std;
  3. int t = 1;
  4.  
  5. void func()
  6. {
  7. int t = 2;
  8. cout << ::t;
  9. }
  10.  
  11. int main()
  12. {
  13. int t = 3;
  14. func();
  15. return 0;
  16. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
1