Sign in
llvm
/
clang
/
1571f048734190c5ed03d1a6083e579ec7b5801f
/
.
/
test
/
SemaCXX
/
array-bound-merge.cpp
blob: 74f58fa1236014db3d60f2a113a7a2e4933a0842 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// PR5515
extern
int
a
[];
int
a
[
10
];
extern
int
b
[
10
];
int
b
[];
extern
int
c
[
1
];
int
c
[]
=
{
1
,
2
};
// expected-error {{excess elements in array initializer}}