Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
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
;
}