Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
b451bc19423ba7e6339326f62c6c67e729537267
/
.
/
test
/
Analysis
/
array-struct.c
blob: 5eac795aae282b5485fbab10a512f7cf094c4488 [
file
] [
log
] [
blame
]
// RUN: clang -checker-simple -verify %s
struct
s
{};
void
f
(
void
)
{
int
a
[
10
];
int
(*
p
)[
10
];
p
=
&
a
;
(*
p
)[
3
]
=
1
;
struct
s d
;
struct
s
*
q
;
q
=
&
d
;
}