The Nest
Explore
Sign in
nuudlman
llvm
clang
test
CodeGen
kr-style-block.c
0
Compiler projects using llvm
Code
Changes
Tags
Discussions
main
//
RUN: %clang_cc1 -emit-llvm %s -o %t -fblocks
void
foo
(
void
(
^
)
(
)
)
;
int
main
(
)
{
foo
(
^
(
)
{
}
)
;
}