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

8 lines
124 B
C++

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