common.h 208 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #ifndef COMMON_H #define COMMON_H extern void ext(int (&)[5]); void func(int t) { int ints[5]; for (unsigned i = 0; i < 5; ++i) { ints[i] = t; } int *i = 0; ext(ints); } #endif // COMMON_H