[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / method-redecls-invalid-interface.m
blob235d6fe5e9d7166d7f099df88af241efef2fb7ba
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wdocumentation -Wno-objc-root-class %s
2 // rdar://29220965
4 @interface InvalidInterface { // expected-note {{previous definition is here}}
5   int *_property;
8 @end
10 /*!
11  */
13 @interface InvalidInterface // expected-error {{duplicate interface definition for class 'InvalidInterface'}}
14 @property int *property;
16 -(void) method;
17 @end
19 @implementation InvalidInterface
20 -(void) method { }
21 @end