Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
039ba763d1da901bcd1ef0020a2aa97704c7962a
/
.
/
test
/
C++Frontend
/
2004-03-15-CleanupsAndGotos.cpp
blob: 4a7715d53eb95f99d68804a76f87cfb6a985b55b [
file
] [
log
] [
blame
]
// Testcase from Bug 291
struct
X
{
~
X
();
};
void
foo
()
{
X v
;
TryAgain
:
goto
TryAgain
;
}