repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix test failures introduced by PR #113697 (#116941)
[llvm-project.git]
/
clang-tools-extra
/
test
/
clang-apply-replacements
/
Inputs
/
conflict
/
common.h
blob
630a39ae52541dc3cea4e0b2c7241ad80bca2004
1
#ifndef COMMON_H
2
#define COMMON_H
3
4
extern
void
ext
(
int
(&)[
5
]);
5
6
void
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_H