Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
bc3d77a0df8f863956cd681131b7258e91ba6ce8
/
.
/
test
/
FrontendC++
/
2004-03-15-CleanupsAndGotos.cpp
blob: 9bc70c84ab424feebba2843dd42120ccceb6a36e [
file
] [
log
] [
blame
]
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
// Testcase from Bug 291
struct
X
{
~
X
();
};
void
foo
()
{
X v
;
TryAgain
:
goto
TryAgain
;
}