| Chris Lattner | 2ca529c | 2008-12-04 23:20:07 +0000 | [diff] [blame^] | 1 | // RUN: clang -fsyntax-only -verify %s -fblocks |
| Douglas Gregor | e912266 | 2008-12-01 19:48:06 +0000 | [diff] [blame] | 2 | |
| 3 | void tovoid(void*); | ||||
| 4 | |||||
| 5 | void tovoid_test(int (^f)(int, int)) { | ||||
| 6 | tovoid(f); | ||||
| 7 | } | ||||