Home
last modified time | relevance | path

Searched refs:withTypedef (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dnullability.cpp131 auto withTypedef = [](INTS _Nonnull) {}; in arraysInLambdas() local
132withTypedef(nullptr); // expected-warning {{null passed to a callee that requires a non-null argum… in arraysInLambdas()
/llvm-project-15.0.7/clang/test/Sema/
H A Dnullability.c246 void (^withTypedef)(INTS _Nonnull) = ^(INTS _Nonnull x) {}; in arraysInBlocks()
247 withTypedef(0); // expected-warning {{null passed to a callee that requires a non-null argument}} in arraysInBlocks()
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dnullability.m279 - (void)withTypedef:(INTS _Nonnull)x;
290 …[obj withTypedef:0]; // expected-warning {{null passed to a callee that requires a non-null argume…