Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
090516fe932ad4ed14b72ea27017aeb4a15cb15c
/
.
/
llvm
/
test
/
Regression
/
C++Frontend
/
2003-11-04-CatchLabelName.cpp
blob: 1646f024db4921ef5cf7d7628c6a55723cb6c629 [
file
] [
log
] [
blame
]
#include
<string>
void
bar
();
void
test
()
{
try
{
bar
();
}
catch
(
std
::
string
)
{}
}