Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
a3efea1881cd7cf7b7764b3100901b27ac2affe7
/
.
/
clang
/
test
/
SemaObjC
/
warn-unused-exception-param.m
blob: f649f8c812198681c719fb75f7e6005c55b2804b [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify -Wunused-exception-parameter %s
void
f0
()
{
@try
{}
@catch
(
id a
)
{}
// expected-warning{{unused exception parameter 'a'}}
}