Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / override-nullability.m
blob07c38c5c4222a73de14e6b4484704d93d4ff07a6
1 // RUN: %clang_cc1 -fobjc-arc -fobjc-runtime-has-weak -Wnonnull %s -verify
3 @interface NSObject @end
5 @interface Base : NSObject
6 - (nonnull id)bad:(nullable id)obj; // expected-note 2 {{previous declaration is here}}
7 - (nullable id)notAsBad:(nonnull id)obj;
8 @end
10 @interface Sub : Base
11 - (nullable id)bad:(nonnull id)obj; // expected-warning {{conflicting nullability specifier on return types, 'nullable' conflicts with existing specifier 'nonnull'}} \
12                                     // expected-warning {{conflicting nullability specifier on parameter types, 'nonnull' conflicts with existing specifier 'nullable'}}
13 - (nonnull id)notAsBad:(nullable id)obj;
14 @end