fork download
  1. enum En{A};
  2. void hoge(int n){}
  3. void hoge(enum En n){}
  4.  
  5. int main(){
  6. return 0;
  7. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:3: error: conflicting types for ‘hoge’
prog.c:2: error: previous definition of ‘hoge’ was here
stdout
Standard output is empty