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