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