[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / alias-test-2.m
blob6688db62e538ad246056e8f69d8baf02aca93daf
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
3 // Note: GCC doesn't produce any of the following errors.
4 @interface Super @end // expected-note {{previous definition is here}}
6 @interface MyWpModule @end  // expected-note {{previous definition is here}}
8 @compatibility_alias  MyAlias MyWpModule;
10 @compatibility_alias  AliasForSuper Super;
12 @implementation MyAlias : AliasForSuper // expected-error {{conflicting super class name 'Super'}}
13 @end
15 @interface MyAlias : AliasForSuper // expected-error {{duplicate interface definition for class 'MyWpModule'}}
16 @end