Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f94e215e4a67e5439d56a67bbe470c7860d4b9a6
/
.
/
test
/
SemaCXX
/
blocks.cpp
blob: 8b4b3aeb88c920e3cf03d237d28b41c780c53210 [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only -verify %s -fblocks
void
tovoid
(
void
*);
void
tovoid_test
(
int
(^
f
)(
int
,
int
))
{
tovoid
(
f
);
}