llvm-project/clang/test/SemaObjCXX/warn-called-once.mm

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

14 lines
305 B
Plaintext
Raw Normal View History

// RUN: %clang_cc1 -verify -fsyntax-only -fblocks -Wcompletion-handler %s
// expected-no-diagnostics
class HasCtor {
HasCtor(void *) {}
};
void double_call_one_block(void (^completionHandler)(void)) {
completionHandler();
completionHandler();
// no-warning - we don't support C++/Obj-C++ yet
}