Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
cc41a94688615b551505e0e7c287e1c444f53a3f
/
.
/
test
/
CodeGenCXX
/
2004-03-15-CleanupsAndGotos.cpp
blob: 01350c00b9bd19c779d6a0709347c9603c44953c [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm %s -o -
// Testcase from Bug 291
struct
X
{
~
X
();
};
void
foo
()
{
X v
;
TryAgain
:
goto
TryAgain
;
}