Sign in
llvm
/
llvm-project
/
clang
/
05dda9e3a2d8773e00b8c8be668ef8919bd3ea04
/
.
/
test
/
SemaObjC
/
warn-unused-exception-param.m
blob: 968a6e02821561d24df056367a36c41f0dbd8ff7 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify -fobjc-exceptions -Wunused-exception-parameter %s
void
f0
(
void
)
{
@try
{}
@catch
(
id a
)
{}
// expected-warning{{unused exception parameter 'a'}}
}