Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
c2b51d8cf33bed92b68ee0a8e3c28411e43faffd
/
.
/
test
/
Sema
/
function.c
blob: 751339b79ab1693dd5e6d6d444eca8bd2cbb7da0 [
file
] [
log
] [
blame
]
// RUN: clang %s -fsyntax-only
// PR1892
void
f
(
double
a
[
restrict
][
5
]);
// should promote to restrict ptr.
void
f
(
double
(*
restrict a
)[
5
]);