Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
llvm-project
/
clang
/
test
/
Parser
/
knr_parameter_attributes.c
blob: 93c866bfee4e1a40dfdd81a037fecbb346dc6f70 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -W -Wall -Wno-deprecated-non-prototype -Werror -verify %s -std=c99
// expected-no-diagnostics
int
f
(
int
i __attribute__
((
__unused__
)))
{
return
0
;
}
int
g
(
i
)
int
i __attribute__
((
__unused__
));
{
return
0
;
}