blob: c273a1626ad0fd0e6db041d8adc8c5d0e7f3a881 [file] [log] [blame]
Douglas Gregorec0bf052008-12-01 21:17:52 +00001// RUN: clang -fsyntax-only -verify %s
Douglas Gregorb65f2422008-12-01 19:48:06 +00002
3void tovoid(void*);
4
5void tovoid_test(int (^f)(int, int)) {
6 tovoid(f);
7}