1 // RUN: %clang_cc1 %s -emit-llvm -o - -fblocks -triple x86_64-apple-darwin10 2 main(void)3int main(void) { 4 ^{ 5 __attribute__((__blocks__(byref))) int index = ({ int __a; int __b; __a < __b ? __b : __a; }); 6 }; 7 } 8 9 // PR13229 10 typedef struct {} Z; 11 12 typedef int (^B)(Z); 13 testPR13229(void)14void testPR13229(void) { 15 Z z1; 16 B b1 = ^(Z z1) { return 1; }; 17 b1(z1); 18 } 19