repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
kr-style-block.c
blob
09efb37927a81cd8647d350a4c9227e168a6108c
1
// RUN: %clang_cc1 -emit-llvm %s -o %t -fblocks
2
3
void
foo
(
void
(^)());
4
5
int
main
()
6
{
7
foo
(
8
^() { }
9
);
10
}