blob: 94295437e16142d4fa43ac65c4783f20949f67c6 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -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}
Anders Carlsson5e578312009-05-26 02:03:20 +00008
9void reference_lvalue_test(int& (^f)()) {
10 f() = 10;
11}