diff options
Diffstat (limited to 'clang/test/CodeGen/kr-style-block.c')
-rw-r--r-- | clang/test/CodeGen/kr-style-block.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/CodeGen/kr-style-block.c b/clang/test/CodeGen/kr-style-block.c new file mode 100644 index 0000000..09efb37 --- /dev/null +++ b/clang/test/CodeGen/kr-style-block.c @@ -0,0 +1,10 @@ +// RUN: %clang_cc1 -emit-llvm %s -o %t -fblocks + +void foo (void(^)()); + +int main() +{ +foo( + ^() { } +); +} |