Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
3311a1f8f0d8a2c6d940802bbb95eba0b801a615
/
.
/
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
;
}