Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
c7c03d919a9ee8600688b3e09aeaa7ff92911c20
/
.
/
llvm
/
test
/
FrontendC++
/
2003-08-24-Cleanup.cpp
blob: 9f20ad6b714ac1dfbcf1dd06b3a55508e84cb695 [
file
] [
log
] [
blame
]
// RUN: %llvmgxx -xc++ %s -S -o - | grep unwind
struct
S
{
~
S
();
};
int
mightthrow
();
int
test
()
{
S s
;
mightthrow
();
}