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