summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-apply-replacements/Inputs/conflict/common.h
blob: 630a39ae52541dc3cea4e0b2c7241ad80bca2004 (plain)
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
OpenPOWER on IntegriCloud