1// RUN: %clang_cc1 -fsyntax-only -verify -fobjc-exceptions -Wunused-exception-parameter %s2void f0(void) {3 @try {} @catch(id a) {} // expected-warning{{unused exception parameter 'a'}}4}5