blob: c32419e42438133d88802ab776bb2e725730e2e6 [file] [log] [blame]
Chris Lattnera66b4df2009-03-13 22:00:25 +00001// RUN: clang -emit-llvm -fblocks -S -o - %s
2// rdar://6676764
3
4struct S {
5 void (^F)(struct S*);
6} P;
7
8
9@interface T
10
11 - (int)foo: (T (^)(T*)) x;
12@end
13
14void foo(T *P) {
15 [P foo: 0];
16}
17