Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
63f5887f316fb52d243fcbb3631c039de6c4b993
/
.
/
test
/
Sema
/
arg-invalid.c
blob: 29b51f4d88cc4ebf0f199525c84cd0ec3d97fd6e [
file
] [
log
] [
blame
]
// RUN: clang %s -parse-ast -verify
void
bar
(
void
*);
void
f11
(
z
)
// expected-error {{may not have 'void' type}}
void
z
;
{
bar
(&
z
);
}