[clang][NFC] simplify the unset check in `ParseLabeledStatement` (#117430)
[llvm-project.git] / clang / test / Analysis / nullability-arc.mm
bloba149671bdb730044fbe359ebdd7dbab0e175d345
1 // RUN: %clang_analyze_cc1 -w -analyzer-checker=core,nullability\
2 // RUN:                       -analyzer-output=text -verify %s
3 // RUN: %clang_analyze_cc1 -w -analyzer-checker=core,nullability\
4 // RUN:                       -analyzer-output=text -verify %s -fobjc-arc
8 #define nil ((id)0)
10 @interface Param
11 @end
13 @interface Base
14 - (void)foo:(Param *_Nonnull)param;
15 @end
17 @interface Derived : Base
18 @end
20 @implementation Derived
21 - (void)foo:(Param *)param {
22   // FIXME: Why do we not emit the warning under ARC?
23   [super foo:param];
25   [self foo:nil];
26   // expected-warning@-1{{nil passed to a callee that requires a non-null 1st parameter}}
27   // expected-note@-2   {{nil passed to a callee that requires a non-null 1st parameter}}
29 @end