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