[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / method-redecls-invalid-interface.m
blob38ab34a5cee76ecfb63a09e8988f96fd65dc540c
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wdocumentation -Wno-objc-root-class %s
3 @interface InvalidInterface { // expected-note {{previous definition is here}}
4   int *_property;
7 @end
9 /*!
10  */
12 @interface InvalidInterface // expected-error {{duplicate interface definition for class 'InvalidInterface'}}
13 @property int *property;
15 -(void) method;
16 @end
18 @implementation InvalidInterface
19 -(void) method { }
20 @end