2015-06-19 18:14:38 +00:00
|
|
|
// RUN: %clang_cc1 -fobjc-arc -fobjc-runtime-has-weak -Wnullable-to-nonnull-conversion %s -verify
|
|
|
|
|
|
|
|
@interface NSObject @end
|
|
|
|
|
|
|
|
@class NSFoo;
|
2015-06-24 22:02:08 +00:00
|
|
|
void foo (NSFoo * _Nonnull);
|
2015-06-19 18:14:38 +00:00
|
|
|
|
|
|
|
@interface NSBar : NSObject
|
|
|
|
@property(weak) NSFoo *property1;
|
|
|
|
@end
|
|
|
|
|
2015-10-09 20:36:17 +00:00
|
|
|
#pragma clang assume_nonnull begin
|
|
|
|
@interface NSBar ()
|
|
|
|
@property(weak) NSFoo *property2;
|
|
|
|
@end
|
|
|
|
|
|
|
|
#pragma clang assume_nonnull end
|
|
|
|
|
2015-06-19 18:14:38 +00:00
|
|
|
@implementation NSBar
|
|
|
|
- (void) Meth {
|
2015-10-09 20:36:17 +00:00
|
|
|
foo (self.property1); // no warning because nothing is inferred
|
|
|
|
foo (self.property2); // expected-warning {{implicit conversion from nullable pointer 'NSFoo * _Nullable' to non-nullable pointer type 'NSFoo * _Nonnull'}}
|
2015-06-19 18:14:38 +00:00
|
|
|
}
|
|
|
|
@end
|