brintos

brintos / llvm-project-archived public Read only

0
0
Text · 105 B · 09efb37 Raw
11 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o %t -fblocks2 3void foo (void(^)());4 5int main()6{7foo(8  ^() { }9);10}11