1// RUN: %clang_cc1 -emit-llvm %s -o %t -fblocks2 3void foo (void(^)());4 5int main()6{7foo(8 ^() { }9);10}11