fork(4) download
  1. enum {
  2. A, B, C, COUNT
  3. };
  4. extern const int (&arr)[COUNT];
  5.  
  6. const int (&arr)[COUNT] = (int[]){ -1, -1, -1};
  7.  
  8. int main() {
  9. arr[C];
  10. }
Success #stdin #stdout 0s 2848KB
stdin
Standard input is empty
stdout
Standard output is empty