[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / stmts.m
blobd452db8c8b2cf58c8f686802baeeb32f654c3245
1 // RUN: %clang_cc1 %s -verify -fsyntax-only -fobjc-exceptions
3 struct some_struct;
5 @interface NSObject
6 @end
8 // Note: NSException is not declared.
9 void f0(id x) {
10   @try {
11   } @catch (NSException *x) { // expected-error {{unknown type name 'NSException'}}
12   } @catch (struct some_struct x) { // expected-error {{@catch parameter is not a pointer to an interface type}}
13   } @catch (int x) { // expected-error {{@catch parameter is not a pointer to an interface type}}
14   } @catch (static NSObject *y) { // expected-error {{@catch parameter cannot have storage specifier 'static'}}
15   } @catch (...) {
16   }