annotate clang/test/SemaObjC/nullability-arc.m @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 1d019706d866
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang_cc1 -fobjc-arc -fsyntax-only -Woverriding-method-mismatch %s -verify
anatofuz
parents:
diff changeset
2
anatofuz
parents:
diff changeset
3 __attribute__((objc_root_class))
anatofuz
parents:
diff changeset
4 @interface NSFoo
anatofuz
parents:
diff changeset
5 @end
anatofuz
parents:
diff changeset
6
anatofuz
parents:
diff changeset
7 // ARC qualifiers stacked with nullability.
anatofuz
parents:
diff changeset
8 void accepts_arc_qualified(NSFoo * __unsafe_unretained _Nonnull obj) {
anatofuz
parents:
diff changeset
9 accepts_arc_qualified(0); // expected-warning{{null passed to a callee that requires a non-null argument}}
anatofuz
parents:
diff changeset
10 }