Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
6a75cd9c1d54625fca7b5477ab9545bcdbd85ea4
/
.
/
test
/
SemaObjC
/
warn-unused-parameters.m
blob: 618dc3ff596ec7c3987209b4daaba00f64c58644 [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only -Wunused -Xclang -verify %s
@interface
foo
-
(
int
)
meth
:
(
int
)
x
:
(
int
)
y
:
(
int
)
z
;
@end
@implementation
foo
-
(
int
)
meth
:
(
int
)
x
:
(
int
)
y
:
// expected-warning{{unused}}
(
int
)
__attribute__
((
unused
))
z
{
return
x
;
}
@end