fork download
  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. template <typename T>
  5. int fun(const T& x) { return 1; }
  6.  
  7.  
  8. namespace {
  9. enum Color { Red, Green, Blue};
  10. }
  11.  
  12. int main()
  13. {
  14. Color c;
  15. fun(c);
  16. }
Success #stdin #stdout 0.01s 2676KB
stdin
Standard input is empty
stdout
Standard output is empty