Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
1d4a8fe156fc65124ea03dde46f9aed74b0a3451
/
.
/
llvm
/
test
/
FrontendC++
/
2003-11-04-CatchLabelName.cpp
blob: 7dbe788f4e17adb37bc1f864fe94e6867f7282e5 [
file
] [
log
] [
blame
]
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
#include
<string>
void
bar
();
void
test
()
{
try
{
bar
();
}
catch
(
std
::
string
)
{}
}