[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / ivar-in-class-extension-error.m
blob98014e12f70aa07b32ae3c5c0219bf5ddadf7bc6
1 // RUN: %clang_cc1 -fobjc-runtime=macosx-fragile-10.5 -fsyntax-only -verify %s
3 @interface A @end
5 @interface A () { 
6   int _p0; // expected-error {{instance variables may not be placed in class extension}}
8 @property int p0;
9 @end
11 @interface A(CAT) { 
12   int _p1; // expected-error {{instance variables may not be placed in categories}}
14 @end