Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
9c82afc7d1f57b427053e6679d87539b0dc63b1a
/
.
/
test
/
Parser
/
cxx-extern-c-array.cpp
blob: 14912fd1067b7c6bb2f96b3137922e3d835b9911 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
extern
"C"
int
myarray
[];
int
myarray
[
12
]
=
{
0
};
extern
"C"
int
anotherarray
[][
3
];
int
anotherarray
[
2
][
3
]
=
{
1
,
2
,
3
,
4
,
5
,
6
};