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