blob: 8b4b3aeb88c920e3cf03d237d28b41c780c53210 [file] [log] [blame]
// RUN: clang -fsyntax-only -verify %s -fblocks
void tovoid(void*);
void tovoid_test(int (^f)(int, int)) {
tovoid(f);
}