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