Searched refs:withTypedef (Results 1 – 3 of 3) sorted by relevance
131 auto withTypedef = [](INTS _Nonnull) {}; in arraysInLambdas() local132 …withTypedef(nullptr); // expected-warning {{null passed to a callee that requires a non-null argum… in arraysInLambdas()
245 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()
279 - (void)withTypedef:(INTS _Nonnull)x;290 …[obj withTypedef:0]; // expected-warning {{null passed to a callee that requires a non-null argume…