fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int llex(){
  5. cout<<"enter 1"<<endl;
  6. char32_t c = U'(';
  7. cout<<(c==U'#')<<endl;
  8. switch(c){
  9. case U'#':
  10. cout<<"enter 2"<<endl;
  11. return 5;
  12. default:
  13. break;
  14. }
  15.  
  16. return 0;
  17. }
  18.  
  19. int main( int argc, char** argv)
  20. {
  21. cout<<"enter 1"<<endl;
  22. char32_t c = U'(';
  23. cout<<(c==U'#')<<endl;
  24. switch(c){
  25. case U'#':
  26. cout<<"enter 2"<<endl;
  27. return 5;
  28. default:
  29. break;
  30. }
  31.  
  32. cout << "------------" << endl;
  33. llex();
  34. }
  35.  
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
enter 1
0
------------
enter 1
0