1 2 3 4 5 6 7 8 9 10 11
// RUN: clang-cc -fsyntax-only -verify %s -fblocks void tovoid(void*); void tovoid_test(int (^f)(int, int)) { tovoid(f); } void reference_lvalue_test(int& (^f)()) { f() = 10; }