summaryrefslogtreecommitdiffstats
path: root/clang/test/Analysis/nullability.m
blob: f777900006de46818451589fa35b76103f7ed7f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_analyze_cc1 -analyzer-checker core,nullability -w -verify %s

// expected-no-diagnostics

id _Nonnull conjure_nonnull();
void use_nullable(_Nullable id x);

id _Nonnull foo() {
  void *j = conjure_nonnull();
  use_nullable(j);
  return j; // no-warning
}
OpenPOWER on IntegriCloud