aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjC/warn-unused-exception-param.m
blob: f649f8c812198681c719fb75f7e6005c55b2804b (plain) (blame)
1
2
3
4
// RUN: %clang_cc1 -fsyntax-only -verify -Wunused-exception-parameter %s
void  f0() {
  @try {} @catch(id a) {} // expected-warning{{unused exception parameter 'a'}}
}