repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Driver: tweak handling of '--analyze' to invoke
[clang.git]
/
test
/
Sema
/
extern-redecl.c
blob
067e3c21e4c4309d587189cf429d81214002a2bb
1
// RUN: %clang_cc1 -fsyntax-only %s
2
3
// rdar: // 8125274
4
static int
a16
[];
// expected-warning {{tentative array definition assumed to have one element}}
5
6
void
f16
(
void
) {
7
extern
int
a16
[];
8
}
9