fork download
  1. void show_time_setup() {}
  2. void set_time_setup() {}
  3. void set_alarm_setup() {}
  4. void set_date_setup() {}
  5.  
  6. void (*mode_setup[])(void) = {
  7. &show_time_setup,
  8. &set_time_setup,
  9. &set_alarm_setup,
  10. &set_date_setup // <-- generates 3 identical error on this line
  11. };
  12.  
  13. int main() {}
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty