fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. typedef enum
  5. {
  6. HOGE,
  7. HUGA
  8. };
  9.  
  10. #define HOGE 2
  11.  
  12. int main() {
  13. cout << HOGE << endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
2