Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
5ae84f274c4e1e9400fbd5d4aaa1d0328644a23e
/
.
/
test
/
CodeGen
/
rdr-6732143-dangling-block-reference.m
blob: b4d21a3f8fccd3657b0f22d35daf3c665c7acb02 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm %s -o -
void
f0
(
id x
)
{
@synchronized
(
x
)
{
do
{
;
}
while
(
0
);
@try
{
}
@finally
{
}
}
}