blob: 8b4b3aeb88c920e3cf03d237d28b41c780c53210 [file] [log] [blame]
Chris Lattner2ca529c2008-12-04 23:20:07 +00001// RUN: clang -fsyntax-only -verify %s -fblocks
Douglas Gregore9122662008-12-01 19:48:06 +00002
3void tovoid(void*);
4
5void tovoid_test(int (^f)(int, int)) {
6 tovoid(f);
7}