hanchenye-llvm-project/clang/test/SemaCXX/blocks.cpp

8 lines
127 B
C++

// RUN: clang-cc -fsyntax-only -verify %s -fblocks
void tovoid(void*);
void tovoid_test(int (^f)(int, int)) {
tovoid(f);
}