diff options
Diffstat (limited to 'clang/test/CodeGen/blocks.c')
-rw-r--r-- | clang/test/CodeGen/blocks.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/CodeGen/blocks.c b/clang/test/CodeGen/blocks.c index 4dfe553aecb..3eb4c43505a 100644 --- a/clang/test/CodeGen/blocks.c +++ b/clang/test/CodeGen/blocks.c @@ -1,2 +1,7 @@ // RUN: clang-cc %s -emit-llvm -o %t -fblocks void (^f)(void) = ^{}; + +// rdar://6768379 +int f0(int (^a0)()) { + return a0(1, 2, 3); +} |