Home
last modified time | relevance | path

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

/external/llvm-project/clang/test/SemaCXX/
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()
/external/llvm-project/clang/test/Sema/
Dnullability.c245 void (^withTypedef)(INTS _Nonnull) = ^(INTS _Nonnull x) {}; in arraysInBlocks()
246 withTypedef(0); // expected-warning {{null passed to a callee that requires a non-null argument}} in arraysInBlocks()
/external/llvm-project/clang/test/SemaObjC/
Dnullability.m279 - (void)withTypedef:(INTS _Nonnull)x;
290 …[obj withTypedef:0]; // expected-warning {{null passed to a callee that requires a non-null argume…