blob: 1c303e8300cbbfefe43a1a96072d10558ec0ad07 [file] [log] [blame]
Douglas Gregorb4866e82015-06-19 18:13:19 +00001// RUN: %clang_cc1 -fobjc-arc -fsyntax-only -Woverriding-method-mismatch %s -verify
2
3__attribute__((objc_root_class))
4@interface NSFoo
5@end
6
7// ARC qualifiers stacked with nullability.
Douglas Gregoraea7afd2015-06-24 22:02:08 +00008void accepts_arc_qualified(NSFoo * __unsafe_unretained _Nonnull obj) {
Douglas Gregorb4866e82015-06-19 18:13:19 +00009 accepts_arc_qualified(0); // expected-warning{{null passed to a callee that requires a non-null argument}}
10}