fork download
  1. #include <iostream>
  2.  
  3. int main ()
  4. {
  5. enum __enum : int { value = 0 };
  6.  
  7. std::cout << __enum::value << std::endl;
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
0