Fix test failures introduced by PR #113697 (#116941)
[llvm-project.git] / clang-tools-extra / test / clang-apply-replacements / Inputs / conflict / common.h
blob630a39ae52541dc3cea4e0b2c7241ad80bca2004
1 #ifndef COMMON_H
2 #define COMMON_H
4 extern void ext(int (&)[5]);
6 void func(int t) {
7 int ints[5];
8 for (unsigned i = 0; i < 5; ++i) {
9 ints[i] = t;
12 int *i = 0;
14 ext(ints);
17 #endif // COMMON_H