[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / SemaObjC / nullable-weak-property.m
blob0c7b21356e55e449137b7b57e59f8b4ae0a8b172
1 // RUN: %clang_cc1 -fobjc-arc -fobjc-runtime-has-weak -Wnullable-to-nonnull-conversion %s -verify
3 @interface NSObject @end
5 @class NSFoo;
6 void foo (NSFoo * _Nonnull);
8 @interface NSBar : NSObject
9 @property(weak) NSFoo *property1;
10 @end
12 #pragma clang assume_nonnull begin
13 @interface NSBar ()
14 @property(weak) NSFoo *property2;
15 @end
17 #pragma clang assume_nonnull end
19 @implementation NSBar 
20 - (void) Meth {
21    foo (self.property1); // no warning because nothing is inferred
22    foo (self.property2); // expected-warning {{implicit conversion from nullable pointer 'NSFoo * _Nullable' to non-nullable pointer type 'NSFoo * _Nonnull'}}
24 @end