llvm-project/clang/test/Analysis/nullability.m

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
270 B
Mathematica
Raw Normal View History

// 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
}