brintos

brintos / llvm-project-archived public Read only

0
0
Text · 208 B · 630a39a Raw
18 lines · c
1#ifndef COMMON_H2#define COMMON_H3 4extern void ext(int (&)[5]);5 6void func(int t) {7  int ints[5];8  for (unsigned i = 0; i < 5; ++i) {9    ints[i] = t;10  }11 12  int *i = 0;13 14  ext(ints);15}16 17#endif // COMMON_H18