summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/kr-style-block.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/kr-style-block.c')
-rw-r--r--test/CodeGen/kr-style-block.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CodeGen/kr-style-block.c b/test/CodeGen/kr-style-block.c
new file mode 100644
index 0000000..ac788dc
--- /dev/null
+++ b/test/CodeGen/kr-style-block.c
@@ -0,0 +1,10 @@
+// RUN: clang-cc -emit-llvm %s -o %t -fblocks
+
+void foo (void(^)());
+
+int main()
+{
+foo(
+ ^() { }
+);
+}
OpenPOWER on IntegriCloud